forked from erikbern/git-of-theseus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 814 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
from distutils.core import setup
setup(
name="git-of-theseus",
version="0.3.4",
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",
],
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",
"git-of-theseus-line-plot=git_of_theseus:line_plot_cmdline",
]
},
)