forked from eapen/uncommitted
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (28 loc) · 1.01 KB
/
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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.abspath(os.path.dirname(__file__)), fname)).read()
setup(
name='unpushed',
version='1.3.0',
description=u'Scan version control for uncommitted and unpushed changes',
long_description=read('README.rst'),
author='Dmitry Bashkatov',
author_email='[email protected]',
url='http://github.com/nailgun/unpushed/',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console', 'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Version Control',
'Topic :: Utilities',
],
package_dir={'': 'src'},
packages=find_packages('src'),
package_data={'': ['*.png']},
include_package_data=True,
install_requires=[],
entry_points='[console_scripts]\n'
'unpushed = unpushed.command:main\n'
'unpushed-notify = unpushed.notify:main\n',
)