-
Notifications
You must be signed in to change notification settings - Fork 164
/
setup.py
47 lines (45 loc) · 1.27 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
45
46
47
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="inltk",
version="0.9",
author="Gaurav",
author_email="[email protected]",
description="Natural Language Toolkit for Indian Languages (iNLTK)",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/goru001/inltk",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux"
],
dependency_links=[
'http://download.pytorch.org/whl/cpu/torch-1.0.0-cp36-cp36m-linux_x86_64.whl'
],
install_requires=[
'aiohttp>=3.5.4',
'async-timeout>=3.0.1',
"Pillow",
"beautifulsoup4",
"bottleneck",
"dataclasses;python_version<'3.7'",
"fastprogress>=0.1.19",
"matplotlib",
"numexpr",
"numpy>=1.15",
"nvidia-ml-py3",
"packaging",
"pandas",
"pynvx>=1.0.0;platform_system=='Darwin'",
"pyyaml",
"requests",
"scipy",
"spacy>=2.0.18",
"typing",
'fastai==1.0.57',
"sentencepiece"
],
)