-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
74 lines (58 loc) · 1.77 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
# -*- coding: UTF-8 -*-
from os import path
from setuptools import find_packages, setup # type: ignore
here = path.abspath(path.dirname(__file__))
def slurp(filename):
with open(filename, encoding='UTF-8') as text_file:
return text_file.read()
setup(
name='sensibility',
version='0.3.dev0',
description='Syntax error finder and fixer',
long_description=slurp(path.join(here, 'README.rst')),
url='https://github.com/naturalness/sensibility',
author='Eddie Antonio Santos',
author_email='[email protected]',
license='Apache',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(),
entry_points={
'console_scripts': ['sensibility=sensibility.__main__:main'],
},
# Node.JS app is NOT zip safe!
zip_safe=False,
include_package_data=True,
install_requires=[
'blessings',
'github3.py==0.9.6',
'h5py>=2.6.0',
'javac-parser>=0.2.0, <0.3.0',
'jenkspy>= 0.1.3, <0.2.0',
# Due to difficulty loading the models across versions, it's easier to
# install this SPECIFIC version of Keras.
'Keras==2.0.8',
'more-itertools>=2.3',
'numpy>=1.11.0',
'python-dateutil>=2.6.0',
'python-Levenshtein>=0.12.0',
'pyzmq>=16.0.2, <17.0.0',
'redis>=2.10.5',
'requests==2.20.0',
'SQLAlchemy>=1.1.9',
'Theano>=0.8.0, < 0.9.0',
'tqdm',
],
extras_require={
'test': [
'pytest',
'mypy',
'pycodestyle'
]
},
)