-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·30 lines (28 loc) · 914 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='git-search-replace',
version='1.0.3',
author='Dan Aloni',
author_email='[email protected]',
packages=['gitsearchreplace',],
scripts=['bin/gsr-branch.py'],
url='https://github.com/da-x/git-search-replace',
license='LICENSE.txt',
description='a utility on top of git for project-wide '
'search-and-replace that includes filenames too',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
include_package_data=True,
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.0',
'License :: OSI Approved :: BSD License',
],
entry_points = {
'console_scripts': [
'git-search-replace.py = gitsearchreplace:main',
]
},
install_requires=['plumbum>=1.5']
)