-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
47 lines (41 loc) · 1.25 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
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
from setuptools import setup, find_packages
install_requires = []
tests_require = [
'flake8',
]
with open('README.rst') as f:
long_description = f.read()
setup(
name='dont-fudge-up',
version='0.0.7',
author='Adam Hitchcock',
author_email='[email protected]',
url='https://github.com/NorthIsUp/dont-fudge-up',
bugtrack_url='https://github.com/NorthIsUp/dont-fudge-up/issues',
description='Find operations that might fudge up production, like a pdb.set_trace',
license='BSD',
entry_points={
'flake8.extension': [
'D = dfu.flake8.check:DFUChecker',
],
},
long_description=long_description,
packages=find_packages(exclude=['tests']),
install_requires=install_requires,
tests_require=tests_require,
extras_require={
'tests': tests_require,
},
zip_safe=True,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Development',
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
)