-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
32 lines (31 loc) · 1.11 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='textlytics',
version='0.0.1',
packages=find_packages(exclude=['docs', 'tests', '*.tests']),
package_data={
'textlytics': ['data/*'],
},
author=u'Lukasz Augustyniak',
author_email='[email protected]',
license='BSD',
url='https://github.com/laugustyniak/textlytics',
description='A set of python modules for sentiment analysis',
classifiers=[
'Development Status :: 1 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Natural Language Processing',
],
include_package_data=True,
)