-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (18 loc) · 1021 Bytes
/
setup.py
File metadata and controls
21 lines (18 loc) · 1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# This setup.py was generated automatically by Pyron.
# For details, see http://pypi.python.org/pypi/pyron/
from setuptools import setup, find_packages
setup(
name = 'uncommitted',
version = '1.2',
description = u'Scan Version Control For Uncommitted Changes',
long_description = u'\nOriginally Created by Brandon Craig Rhodes\nThis is my forked version with Git support and defaulting to search by path rather than locate',
author = 'George Eapen',
author_email = 'github@eapen.in',
url = 'http://github.com/eapen/uncommitted/',
classifiers = ['Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Topic :: Software Development :: Version Control', 'Topic :: Utilities'],
package_dir = {'': 'src'},
packages = find_packages('src'),
include_package_data = True,
install_requires = [],
entry_points = '[console_scripts]\nuncommitted = uncommitted.command:main\n',
)