forked from fsufitch/git-gud
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 743 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, Extension, find_packages
setup(name='gitgud',
version='1.1',
author='Filip Sufitchi',
author_email="fsufitchi@gmail.com",
description="Git Gud - a utility for when you are told to 'get good'",
url="https://github.com/fsufitch/git-gud",
package_dir={'':'src'},
packages=['gitgud'],
entry_points = {
"console_scripts": [
"git-gud=gitgud.gitgud:git.gud",
"git-job=gitgud.gitgud:git.job",
"git-rekt=gitgud.gitgud:git.rekt",
"git-spooked=gitgud.gitgud:git.spooked",
"git-money=gitgud.gitgud:git.money",
],
},
install_requires=['argparse', 'pyfiglet'],
)