-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 802 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
from setuptools import setup
setup(
name='valence_server',
version='1.2',
description='A HTTP server for package for Estonian language text valence(positive/negative) detection',
packages=['valence_server',],
include_package_data=True,
install_requires=['valence>=1.2','mako>=1.0.4', 'bottle>=0.12.9', 'waitress>=0.9.0'],
url='www.eki.ee',
author='Institute of the Estonian Language',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Topic :: Text Processing :: Linguistic',
'Natural Language :: Estonian',
],
keywords='estonian valence',
license='GPLv3',
zip_safe=False
)