-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
56 lines (55 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
from setuptools import setup
setup(
name="blabla",
version="0.2.2",
description="Novoic linguistics feature extraction package.",
url="http://github.com/novoic/BlaBla",
author="Abhishek Shivkumar",
author_email="[email protected]",
license="GPL-3.0",
packages=[
"blabla",
"blabla.sentence_processor",
"blabla.utils",
"blabla.language_resources",
"blabla.sentence_aggregators",
],
keywords=[
"feature-extraction",
"language",
"machine-learning",
"text-processing",
"python",
"natural-language-processing",
"nlp",
"stanza",
"dementia",
"alzheimers-disease",
"parkinsons-disease",
],
download_url="https://github.com/novoic/blabla/archive/v0.2.2.tar.gz",
install_requires=[
"stanza>=1.1.0",
"flask==1.1.2",
"jsonpickle==1.4",
"anytree==2.8.0",
"nltk==3.5",
"ipython==7.13.0",
"jsonschema==3.2.0",
"pyyaml==5.3.1",
"pandas==1.0.3",
"tqdm==4.46.0"
],
package_data={"blabla.language_resources": ["*.txt"]},
include_package_data=True,
scripts=["bin/blabla"],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Healthcare Industry',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)