forked from erikbern/git-of-theseus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 773 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
from distutils.core import setup
setup(name='git-of-theseus',
version='0.2.0',
description='Plot stats on Git repositories',
author='Erik Bernhardsson',
author_email='[email protected]',
url='https://github.com/erikbern/git-of-theseus',
packages=['git_of_theseus'],
install_requires=[
'gitpython',
'numpy',
'tqdm',
'wcmatch',
'pygments',
'matplotlib',
'scipy',
],
entry_points={
'console_scripts': [
'git-of-theseus-analyze=git_of_theseus.analyze:analyze_cmdline',
'git-of-theseus-survival-plot=git_of_theseus:survival_plot_cmdline',
'git-of-theseus-stack-plot=git_of_theseus:stack_plot_cmdline'
]
}
)