-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 811 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (22 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""PREDICT DEMO
This is meant to be a rough outline of how predict will function
"""
from setuptools import setup
setup(
name="predict",
packages=["predict", "predict.builtin"],
install_requires=["bs4", "flask", "requests", "flask-login", "sqlalchemy", "pygments", "entrypoints"],
entry_points={
"console_scripts": ["predict=predict.cli:main"],
"predict.plugins": [
"csv=predict.builtin.csv:CSV",
"majority=predict.builtin.majority:Majority",
"current_user=predict.builtin.current_user:CurrentUser",
"comments=predict.builtin.comments:Comments",
"num_agree=predict.builtin.num_agree:NumAgree",
]
},
package_data={
"predict": ["templates/*", "static/*", "static/js/*", "static/svg/*"]
}
)