forked from facebookarchive/codemod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 921 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
31
32
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
description = (
'Codemod is a tool/library to assist you with large-scale codebase '
'refactors that can be partially automated but still require human '
'oversight and occasional intervention. Codemod was developed at '
'Facebook and released as open source.'
)
setup(
name='codemod',
version="1.0.0",
url='http://github.com/facebook/codemod',
license='Apache License 2.0',
author="Facebook",
author_email="facebook@facebook.com",
description=description,
long_description=description,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms='any',
entry_points='''
[console_scripts]
codemod=codemod.base:main
''',
tests_require=['flake8', 'pytest'],
test_suite='py.test'
)