-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
45 lines (44 loc) · 1.8 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
from setuptools import setup
setup(
name='uncertainty',
version='0.1.1',
packages=[
'uncertainty', 'uncertainty.data', 'uncertainty.lib',
'uncertainty.lib.nlp'
],
package_data={
'uncertainty': ['models/*.p', 'vectorizers/*.p'],
'uncertainty.lib.nlp': ['verbs.txt']
},
install_requires=[
'numpy==1.22.0',
'scipy==1.10.0',
'scikit-learn==0.18.1',
'nltk==3.4.5'
],
license='The MIT License (MIT) Copyright (c) 2017 Benjamin S. Meyers',
description='Python implementation of a classifier for linguistic '
'uncertainty, based on the work by Vincze et al.',
author='Benjamin S. Meyers',
author_email='[email protected]',
url='https://github.com/meyersbs/uncertainty',
#download_url='https://github.com/meyersbs/uncertainty/uncertainty/dist/uncertainty-0.1.0.tar.gz',
test_suite='uncertainty.tests',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic'
],
keywords=[
'nlp', 'natural language', 'natural language processing',
'uncertainty', 'linguistic uncertainty', 'classification'
]
)