-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (34 loc) · 1.33 KB
/
Copy pathsetup.py
File metadata and controls
40 lines (34 loc) · 1.33 KB
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
import setuptools
setuptools.setup(
name='diagnosticism',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*',
version='0.17.0',
author='Matt Wilson',
author_email='matthew@synesis.com.au',
classifiers=[
'Intended Audience :: Developers',
"License :: OSI Approved :: BSD License",
'Natural Language :: English',
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
],
description='Basic diagnostic facilities, for Python',
keywords='Diagnostic Diagnostics Logging Trace Tracing Stopwatch',
license='BSD-3-Clause',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
packages=setuptools.find_packages(exclude=[
'examples',
'tests',
]),
url='https://github.com/synesissoftware/diagnosticism.Python',
)