-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
executable file
·64 lines (51 loc) · 1.54 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
#!/usr/bin/python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from setuptools.command.test import test
def discover_and_run_tests():
import os
import sys
import unittest
# get setup.py directory
setup_file = sys.modules["__main__"].__file__
setup_dir = os.path.abspath(os.path.dirname(setup_file))
# use the default shared TestLoader instance
test_loader = unittest.defaultTestLoader
# use the basic test runner that outputs to sys.stderr
test_runner = unittest.TextTestRunner()
test_suite = test_loader.discover(setup_dir)
test_runner.run(test_suite)
class DiscoverTest(test):
def finalize_options(self):
test.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
discover_and_run_tests()
config = {
"name": "sarstats",
"version": "0.5",
"author": "Michele Baldessari",
"author_email": "michele@acksyn.org",
"url": "http://acksyn.org",
"license": "GPLv2",
"cmdclass": {"test": DiscoverTest},
"py_modules": [
"sar_parser",
"sar_stats",
"sar_metadata",
"sar_grapher",
"sos_report",
],
"scripts": ["sarstats"],
"install_requires": ["dateutils", "matplotlib", "reportlab"],
"classifiers": [
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python",
],
}
setup(**config)