-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 798 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 798 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
from setuptools import setup
setup(
name="gitcen",
version='0.1.0',
description="A project to find git information.",
long_description="A project to find git information about authors' commits,most active days and time.",
author="Anwesha Das.",
author_email="anwesha@das.community",
url="https://github.com/anweshadas/gitcen",
license="GPLv3+",
py_modules=['gitcen'],
install_requires=[
'Click',
'pygit2'
],
entry_points='''
[console_scripts]
gitcen=gitcen:main
''',
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.6'
)
)