forked from jacksonllee/pylangacq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (51 loc) · 2.24 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
from os import path
from setuptools import (setup, find_packages)
THIS_DIR = path.dirname(__file__)
with open(path.join(THIS_DIR, 'pylangacq', 'VERSION')) as f:
package_version = f.read().strip()
with open(path.join(THIS_DIR, 'README.rst')) as f:
long_description = f.read()
def main():
setup(
name="pylangacq",
version=package_version,
description="PyLangAcq: Language Acquisition Research in Python",
long_description=long_description,
url="http://pylangacq.org/",
author="Jackson Lee",
author_email="[email protected]",
license="MIT License",
packages=find_packages(),
keywords=['computational linguistics', 'natural language processing',
'NLP', 'linguistics', 'corpora', 'speech',
'language', 'CHILDES', 'CHAT', 'transcription',
'acquisition', 'development', 'learning'],
package_data={'pylangacq': ['VERSION', 'tests/test_data/*']},
zip_safe=False,
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'
],
)
if __name__ == "__main__":
main()