-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 703 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 703 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
#!/usr/bin/env python
from setuptools import setup
import pep8ify
setup(
name="pep8ify",
license='Apache License 2.0',
version=pep8ify.__version__,
description="Cleans your python code to conform to pep8",
author="Steve Pulec",
author_email="spulec@gmail.com",
url="https://github.com/spulec/pep8ify",
packages=["pep8ify", "pep8ify.fixes"],
entry_points={
'console_scripts': [
'pep8ify = pep8ify.pep8ify:_main',
],
},
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Utilities",
])