forked from linguistica-uchicago/lxa5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
75 lines (65 loc) · 2.59 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
from os import path
from setuptools import setup, find_packages
this_dir = path.dirname(__file__)
version_path = path.join(this_dir, 'linguistica', 'VERSION')
with open(version_path) as f:
package_version = f.read().strip()
readme_path = path.join(this_dir, 'README.rst')
with open(readme_path) as f:
long_description = f.read()
requirements_path = path.join(this_dir, 'requirements.txt')
with open(requirements_path) as f:
requirements = [x.strip() for x in f.readlines()]
setup(name='linguistica',
version=package_version,
description='Linguistica 5: Unsupervised Learning of Linguistic Structure',
long_description=long_description,
url='http://linguistica.uchicago.edu/',
author='Jackson Lee',
author_email='[email protected]',
license='MIT License',
packages=find_packages(),
keywords=['computational linguistics', 'natural language processing',
'NLP', 'linguistics', 'corpora', 'speech',
'language', 'machine learning', 'unsupervised learning',
'data visualization'],
install_requires=requirements,
package_data={
'linguistica': [
'VERSION',
'gui/*',
'datasets/*',
'tests/data/*',
],
},
zip_safe=False,
entry_points={
'console_scripts': [
'linguistica = linguistica.__main__:main'
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Indexing',
'Topic :: Text Processing :: Linguistic',
],
)