forked from fhcrc/deenurp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
67 lines (56 loc) · 1.88 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import os
import sys
import deenurp
# Fix for `setup.py test`
# See http://bugs.python.org/issue15881
try:
import multiprocessing
from concurrent import futures
except ImportError:
pass
try:
from setuptools import setup, find_packages, Command
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages, Command
class run_audit(Command):
"""Audits source code using PyFlakes for following issues:
- Names which are used but not defined or used before they are defined.
- Names which are redefined without having been used.
"""
description = "Audit source code with PyFlakes"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
try:
import pyflakes.scripts.pyflakes as flakes
except ImportError:
print "Audit requires PyFlakes installed in your system."
sys.exit(-1)
warns = 0
# Define top-level directories
dirs = 'deenurp',
for dir in dirs:
for root, _, files in os.walk(dir):
for file in files:
if file != '__init__.py' and file.endswith('.py'):
warns += flakes.checkPath(os.path.join(root, file))
if warns > 0:
print "Audit finished with total %d warnings." % warns
else:
print "No problems found in sourcecode."
install_requires = []
setup(name='deenurp',
version=deenurp.version.version(),
package_data={'deenurp': ['data/*', 'test/data/*']},
entry_points={
'console_scripts': {'deenurp = deenurp:main'}},
install_requires=install_requires,
cmdclass={'audit': run_audit},
test_suite='deenurp.test.suite',
packages=find_packages(exclude=['tests'])
)