forked from jacksonllee/pylangacq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (48 loc) · 2.05 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
from os import path
import sys
from setuptools import (setup, find_packages)
py_version = sys.version_info[:2]
if py_version < (3, 4):
sys.exit('Error: PyLangAcq requires Python 3.4 or above.\n'
'You are using Python {}.{}.'.format(*py_version))
version_path = path.join(path.dirname(__file__), 'pylangacq', 'VERSION')
with open(version_path) as f:
package_version = f.read().strip()
setup(name="pylangacq",
version=package_version,
description="PyLangAcq",
long_description="PyLangAcq: Language Acquisition Research in Python",
url="http://pylangacq.org/",
author="Jackson Lee",
author_email="[email protected]",
license="Apache License, Version 2.0",
packages=find_packages(),
keywords=['computational linguistics', 'natural language processing',
'NLP', 'linguistics', 'corpora', 'speech',
'language', 'CHILDES', 'CHAT', 'transcription',
'acquisition', 'development', 'learning'],
install_requires=['networkx'],
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'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'
],
package_data = {'pylangacq': ['VERSION']}
)