-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.18 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
33
34
35
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
name='git-indexed-commands',
version='0.1',
description='Working with indexes instead of filepaths in custom git commands',
long_description=README,
url='https://github.com/chubz/git-indexed-commands.git',
author='Borislav Petrović',
author_email='[email protected]',
license='BSD License',
packages=find_packages(exclude=['tests', 'tests.*']),
entry_points={
'console_scripts': [
'git-istatus=git_indexed_commands.script:git_istatus_main',
'git-iadd=git_indexed_commands.script:git_iadd_main',
'git-icheckout=git_indexed_commands.script:git_icheckout_main',
'git-idiff=git_indexed_commands.script:git_idiff_main',
],
},
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities',
],
)