forked from hjacobs/codevalidator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·30 lines (27 loc) · 1.12 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst') as readme:
setup(
name='codevalidator',
version='0.8.1',
description='Simple source code validator with file reformatting option (remove trailing WS, pretty print XML, ..)'
,
long_description=readme.read(),
author='Henning Jacobs',
author_email='[email protected]',
url='https://github.com/hjacobs/codevalidator',
py_modules=['codevalidator'],
packages=['pythontidy'],
entry_points={'console_scripts': ['codevalidator = codevalidator:main']},
extras_require={'YAML': ['PyYAML'], 'XML': ['lxml'], 'Python': ['pep8', 'autopep8', 'pyflakes']},
keywords='formatter, beautify, indentation',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development :: Pre-processors',
'Topic :: Text Processing :: Markup :: XML',
'Programming Language :: Python :: 2.7',
],
)