-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
61 lines (46 loc) · 1.41 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
from os import path
from setuptools import setup
from codecs import open
__package__ = 'gap'
__version__ = '0.11.0'
__licence__ = 'LGPL3'
__author__ = 'Alexandre Decan'
__url__ = 'https://github.com/AlexandreDecan/gap'
__description__ = 'GAP - Git Activity Predictor'
setup(
name=__package__,
version=__version__,
license=__licence__,
author=__author__,
url=__url__,
description=__description__,
install_requires=[
'python-dateutil >= 2.7.5',
'gitpython >= 2.1.11',
'statsmodels >= 0.9.0',
'scipy >= 1.1.0',
'pandas >= 0.23.4',
'plotnine >= 0.5.1',
],
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='activity prediction git',
entry_points={
'console_scripts': [
'gap=gap:cli',
]
},
py_modules=['gap'],
zip_safe=True,
)