-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
37 lines (33 loc) · 1.13 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
36
37
from setuptools import setup
from config import version, summary
install_requires = ['setuptools']
try:
import argparse
argparse # make pyflakes happy
except ImportError:
install_requires.append('argparse')
setup(name='PythonTidy',
version=version,
description=summary,
long_description=summary,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Topic :: Software Development :: Quality Assurance",
],
keywords='indentation beautify',
author='Charles Curtis Rhode',
author_email='[email protected]',
url='http://pypi.python.org/pypi/PythonTidy',
license='GPL version 2',
py_modules=['PythonTidy', 'PythonTidyWrapper', 'config', 'runner'],
platforms='Any',
install_requires=install_requires,
entry_points={
'console_scripts': ['pythontidy = runner:main'],
},
)