forked from xiechao06/Flask-Report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
90 lines (76 loc) · 2.59 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
"""
Flask-Report
-----
Flask-Report is a micro report framework based on Flask, and other report engines
````````````
.. code:: python
from flask import Flask
from database import db
app = Flask(__name__)
form flask_report import FlaskReport
FlaskReport(db, app)
Links
`````
* `website <http://www.github.com/xiechao06/Flask-Report/>`_
* `documentation <http://xiechao06.github.io/Flask-Report/>`_
* `development version
<http://github.com/xiechao06/flask/zipball/master#egg=Flask-Report-dev>`_
"""
from __future__ import print_function
from setuptools import Command, setup
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):
import os, sys
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 = ('flask_report', 'example')
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.")
setup(
name='flask_report',
version='0.0.1-dev',
url='http://github.com/xiechao06/Flask-Report/',
license='BSD',
author='XieChao',
author_email='[email protected]',
description='A micro report system based upon flask and some report engines',
long_description=__doc__,
packages=['flask_report'],
include_package_data=True,
zip_safe=False,
platforms='any',
# install_requires=open('requirements.txt').readlines(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: REPORT',
'Topic :: Software Development :: Libraries :: Python Modules'
],
cmdclass={'audit': run_audit},
)