-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 698 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 698 Bytes
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
from setuptools import setup
setup(
name='gitimpact',
version='0.6.0',
packages=['gitimpact', 'gitimpact.core',
'gitimpact.core.calc', 'gitimpact.core.addons'],
url='',
license='MIT',
author='gregoryvit',
author_email='gregoryvit@gmail.com',
description='Automatic git impact analysis tool',
scripts=[
'bin/gitimpact'
],
package_data={
'gitimpact': ['templates/*']
},
install_requires=[
"gitpython==2.1.11",
"python-redmine==1.5.1",
"ruamel.yaml==0.13.14",
"sklearn==0.0",
"pandas==0.23.4",
"numpy==1.15.2",
"reprint==0.5.1",
"futures==3.2.0"
]
)