-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
48 lines (33 loc) · 1.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
from setuptools import setup, find_packages
VERSION = '0.1.3'
setup(
name='gitrisky',
description='Predict code bug risk with git metadata',
version=VERSION,
url='https://github.com/hinnefe2/gitrisky',
download_url=('https://github.com/hinnefe2/gitrisky/archive/{}.tar.gz'
.format(VERSION)),
author='J. Henry Hinnefeld',
author_email='henry.hinnefeld@gmail.com',
packages=find_packages(),
install_requires=[
'click>=6.7',
'GitPython>=2.1',
'numpy>=1.13',
'pandas>=0.20',
'scikit-learn>=0.19',
'scipy>=0.19',
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Version Control :: Git',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
],
include_package_data=True,
entry_points={
'console_scripts': ['gitrisky=gitrisky.cli:cli'],
},
)