-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
29 lines (24 loc) · 815 Bytes
/
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
#!/usr/bin/python2.7
"""
setup module for busfactor
See:
https://github.com/SOM-Research/busfactor/
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
from distutils.core import setup
setup(name='busfactor',
version='0.2',
license='MIT',
author='valerio cosentino',
url='https://github.com/SOM-Research/busfactor',
description='A bus factor analyzer for Git repositories',
long_description='A bus factor analyzer for Git repositories.',
keywords='Busfactor: Bus factor analyzer Git repositoriesr',
packages=['busfactor'],
package_dir={'busfactor': ''},
package_data={'busfactor': ['css/*.css', 'css/bootstrap/*.css',
'data/*.json', 'js/*.js', 'js/bootstrap/*.js',
'js/vendor/*.js', '*.png', 'index.html',
'LICENSE']},
)