-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.17 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name = "mlearn",
version = "0.0.1",
author = "Zeerak Waseem",
author_email = "[email protected]",
decription = "A package to contain machine learning pipelines for python.",
long_description = long_description,
long_description_content_type = "text/markdown",
url="[email protected]:ZeerakW/mlearn.git",
packages = setuptools.find_packages(),
classifiers=[
"Programming Languge :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix"
],
python_requires='>3.6',
install_requires=[
"Cython==0.29.21",
"numpy==1.20.1",
"tqdm==4.36.1",
"spacy==2.2.2",
"scikit-learn==0.24.1",
"torchtestcase",
"torchtext==0.6.0",
"torch==1.7.1",
'bpemb',
'ekphrasis',
'wandb',
"en_core_web_sm @ https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.2.5/en_core_web_sm-2.2.5.tar.gz#egg=en_core_web_sm"
],
dependency_links=["https://download.pytorch.org/whl/torch_stable.html"]
)