-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (42 loc) · 1.64 KB
/
setup.py
File metadata and controls
43 lines (42 loc) · 1.64 KB
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
from setuptools import setup
setup(
name='squinky',
version='0.1.0',
packages=[
'squinky', 'squinky.data', 'squinky.lib', 'squinky.lib.nlp'
],
package_data={
'squinky': ['models/*.p', 'vectorizers/*.p'],
'squinky.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='Classifiers for formality, informativeness, and '
'implicature trained on the SQUINKY! corpus.',
author='Benjamin S. Meyers',
author_email='bsm9339@rit.edu',
url='https://github.com/meyersbs/squinky',
test_suite='squinky.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',
'formality', 'informativeness', 'implicature', 'squinky'
]
)