-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (28 loc) · 809 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
from setuptools import setup, find_packages
with open("Readme.md", "r") as fh:
long_description = fh.read()
setup(name='fhnw-nlp-utils',
version='0.9.10',
description='Utilities for NLP courses taught at FHNW.',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/markif/fhnw-nlp-utils',
author='Fabian',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy',
'pandas',
'psutil',
'multiprocess',
'wget',
'gdown',
'scikit-learn',
'nltk',
'matplotlib',
'wordcloud',
'compound-split',
'pyarrow',
'iterative-stratification',
],
zip_safe=False)