-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
66 lines (58 loc) · 1.93 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
# -*- coding: utf8 -*-
from __future__ import with_statement
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import diagnostics
with open("README.rst") as readme:
with open("CHANGELOG.rst") as changelog:
long_description = readme.read() + "\n\n" + changelog.read()
with open("LICENSE.rst") as file:
license = file.read()
setup(
name="diagnostics",
version=diagnostics.__version__,
description="Alternative to Python's module `cgitb` with template inspired by Nette and Django",
long_description=long_description,
author="Michal Belica",
author_email="[email protected]",
url="https://github.com/miso-belica/diagnostics",
license=license,
keywords=["debug", "cgitb", "traceback"],
tests_require=[
"nose",
"coverage",
],
test_suite="tests",
install_requires=[],
packages=[
"diagnostics",
"diagnostics.models",
"diagnostics.logging",
"diagnostics.formatters",
],
package_data={"diagnostics": [
"templates/*.png",
"templates/*.css",
"templates/*.js",
]},
classifiers=(
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Topic :: Utilities",
"Topic :: Software Development :: Bug Tracking",
# "Topic :: Software Development :: Debuggers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: Implementation :: CPython",
),
)