-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
158 lines (131 loc) · 4.4 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#!/usr/bin/env python
from __future__ import division, print_function
import os
import subprocess
import sys
from setuptools import setup, find_packages
__author__ = "Gary Lai"
MAJOR = 0
MINOR = 1
MICRO = 32
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
# Return the git revision as a string
def get_dev_version():
def _minimal_ext_cmd(cmd):
# construct minimal environment
env = {}
for k in ['SYSTEMROOT', 'PATH', 'HOME']:
v = os.environ.get(k)
if v is not None:
env[k] = v
# LANGUAGE is used on win32
env['LANGUAGE'] = 'C'
env['LANG'] = 'C'
env['LC_ALL'] = 'C'
out = subprocess.Popen(cmd, stdout=subprocess.PIPE, env=env).communicate()[0]
return out
try:
# out = _minimal_ext_cmd(['git', 'rev-parse', 'HEAD'])
out = _minimal_ext_cmd(['git', 'log', '-1', '--pretty=format:%ct'])
DEV_VERSION = out.strip().decode()
except OSError:
DEV_VERSION = "Unknown"
return DEV_VERSION
def get_version_info(filename):
# Adding the git rev number needs to be done inside write_version_py(),
# otherwise the import of numpy.version messes up the build under Python 3.
FULLVERSION = VERSION
if os.path.exists('.git'):
DEV_VERSION = get_dev_version()
elif os.path.exists(filename):
# must be a source distribution, use existing version file
try:
from elit.version import dev_version as DEV_VERSION
except ImportError:
raise ImportError("Unable to import dev_version. Try removing "
"elit/version.py and the build directory "
"before building.")
else:
DEV_VERSION = "Unknown"
if not ISRELEASED:
FULLVERSION += '.dev' + DEV_VERSION
return FULLVERSION, DEV_VERSION
def write_version_py(filename):
cnt = """
# THIS FILE IS GENERATED FROM SCIPY SETUP.PY
short_version = '%(version)s'
version = '%(version)s'
full_version = '%(full_version)s'
dev_version = '%(dev_version)s'
release = %(isrelease)s
if not release:
version = full_version
"""
FULLVERSION, DEV_VERSION = get_version_info(filename)
a = open(filename, 'w')
try:
a.write(cnt % {'version': VERSION,
'full_version': FULLVERSION,
'dev_version': DEV_VERSION,
'isrelease': str(ISRELEASED)})
finally:
a.close()
VERSION_PY = 'elit/version.py'
if sys.version_info[:2] < (3, 6):
raise RuntimeError("Python version >= 3.6 required.")
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
CLASSIFIERS = """
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Information Analysis
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
"""
EXCLUDE_FROM_PACKAGES = ['']
def setup_package():
write_version_py(filename=VERSION_PY)
metadata = dict(
name='elit',
url='https://github.com/elitcloud/elit',
download_url='https://github.com/elitcloud/elit/tree/master',
author='Emory NLP',
author_email='[email protected]',
description='ELIT: Evolution of Language and Information Technology',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
license='Apache 2.0',
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
package_data={'': ['*.txt', '*.json']},
install_requires=[
# 'mxnet-cu92==1.4.1',
'mxnet>=1.4.1',
'argparse==1.4.0',
'numpy==1.14.5',
'gluonnlp==0.6.0',
'tqdm==4.26.0',
'gensim==3.6.0',
'marisa_trie==0.7.5',
],
extras_require={
# 'cu92': ['mxnet-cu92==1.3.0']
},
tests_require=[
'pytest',
],
classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f],
scripts=['bin/elit'],
)
metadata['version'] = get_version_info(filename=VERSION_PY)[0]
setup(**metadata)
if __name__ == '__main__':
setup_package()