-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1015 Bytes
/
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="emr-analysis",
version="0.0.1",
author="Xcoo, Inc.",
author_email="[email protected]",
description="A small example package",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(),
install_requires=[
"gensim==4.2.0",
"mojimoji==0.0.12",
"numpy==1.23.4",
"pandas==1.4.4",
"python-dateutil==2.8.2",
"pyyaml==6.0",
"scikit-learn==1.5.0",
"scipy==1.12.0",
"stanza==1.4.2",
"torch==2.4.0",
],
extras_require={
"dev": [
"ipywidgets==8.0.1",
"jupyterlab==3.4.3",
"tabulate[widechars]==0.9.0",
],
},
python_requires='>=3.9',
)