forked from EducationalTestingService/skll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (57 loc) · 2.83 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
#!/usr/bin/env python
# License: BSD 3 clause
import sys
from setuptools import setup
# Get version without importing, which avoids dependency issues
exec(compile(open('skll/version.py').read(), 'skll/version.py', 'exec'))
# (we use the above instead of execfile for Python 3.x compatibility)
def readme():
with open('README.rst') as f:
return f.read()
def requirements():
# Use backported requirements for 2.7
if sys.version_info < (3, 0):
req_path = 'requirements_rtd.txt'
# Use 3.x requirements
else:
req_path = 'requirements.txt'
with open(req_path) as f:
reqs = f.read().splitlines()
return reqs
setup(name='skll',
version=__version__,
description=('SciKit-Learn Laboratory makes it easier to run machine' +
'learning experiments with scikit-learn.'),
long_description=readme(),
keywords='learning scikit-learn',
url='http://github.com/EducationalTestingService/skll',
author='Daniel Blanchard',
author_email='[email protected]',
license='BSD 3 clause',
packages=['skll', 'skll.utilities'],
entry_points={'console_scripts': ['filter_megam = skll.utilities.filter_megam:main',
'generate_predictions = skll.utilities.generate_predictions:main',
'join_megam = skll.utilities.join_megam:main',
'megam_to_libsvm = skll.utilities.megam_to_libsvm:main',
'print_model_weights = skll.utilities.print_model_weights:main',
'run_experiment = skll.utilities.run_experiment:main',
'skll_convert = skll.utilities.skll_convert:main',
'summarize_results = skll.utilities.summarize_results:main',
'compute_eval_from_predictions = skll.utilities.compute_eval_from_predictions:main']},
install_requires=requirements(),
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
],
zip_safe=False)