forked from nailgun/unpushed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 1.02 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
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.1.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',
)