-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (29 loc) · 788 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
30
31
32
33
34
35
36
37
38
39
40
41
__author__ = 'tusharmakkar08'
from setuptools import setup
setup(
# Application name:
name="git-del-br",
# Version number:
version="1.0.6",
# Application author details:
author="Tushar Makkar",
author_email="tusharmakkar08@gmail.com",
# Packages
py_modules=['git_del_br'],
package_data={'': ['*.md']},
license='MIT',
platforms=['any'],
# Details
url="https://github.com/tusharmakkar08/git-del-br/",
classifiers=[
'Programming Language :: Python :: 2.7',
],
# license="LICENSE.txt",
description="Git delete merged branches",
long_description=open("README.rst").read(),
entry_points={
'console_scripts': [
'git-del-br=git_del_br:command_line_runner',
]
},
)