-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
44 lines (42 loc) · 1.36 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
if __name__ == "__main__":
setuptools.setup(
name="nlstruct",
version="0.2.0",
author="Perceval Wajsburt",
author_email="perceval.wajsburt@sorbonne-universite.fr",
license='MIT',
description="Natural language structuring library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/percevalw/nlstruct",
packages=setuptools.find_packages(),
package_data={'': ['example.env']},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
"fire",
"torch>=1.0.0",
"numpy",
"einops>=0.3.0",
"anyascii>=0.3.2",
"transformers>=4.3.0",
"tqdm>=4.56.0",
"scikit-learn",
"pandas",
"pytorch_lightning>=1.1.7",
"torchmetrics>=0.7.3",
"rich_logger>=0.3.1",
"sentencepiece>=0.1.95",
"xxhash>=2.0.0",
"regex>=2020.11.13",
"parse>=1.19.0",
]
)