forked from da-x/git-search-replace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 789 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 789 Bytes
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
#!/usr/bin/env python
from setuptools import setup
setup(
name='git-search-replace',
version='1.0.2',
author='Dan Aloni',
author_email='alonid@gmail.com',
packages=['gitsearchreplace',],
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(),
include_package_data=True,
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: BSD License',
],
entry_points = {
'console_scripts': [
'git-search-replace.py = gitsearchreplace:main',
]
}
)