-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathsetup.py
44 lines (44 loc) · 1.19 KB
/
setup.py
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='potato-annotation',
version='1.2.2.4',
packages=find_packages(),
entry_points={
'console_scripts': [
'potato = potato.cli:potato',
],
},
url="https://github.com/davidjurgens/potato",
author="Jiaxin Pei",
author_email="pedropei@umich.edu",
description="Potato text annotation tool",
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'beautifulsoup4>=4.10.0',
'click>=8.0.3',
'Flask>=2.0.2',
'itsdangerous>=2.0.1',
'Jinja2>=3.0.3',
'joblib>=1.2.0',
'simpledorff>=0.0.2',
'MarkupSafe>=2.0.1',
'numpy>=1.21.0',
'pandas>=1.3.5',
'python-dateutil>=2.8.2',
'pytz>=2021.3',
'PyYAML>=6.0',
'requests>=2.29.0',
'scikit-learn>=1.0.2',
'scipy>=1.7.3',
'six>=1.16.0',
'soupsieve>=2.3.1',
'threadpoolctl>=3.0.0',
'tqdm>=4.62.3',
'ujson>=5.4.0',
'Werkzeug>=2.0.2'
]
)