forked from synesissoftware/Diagnosticism.Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (34 loc) · 1.21 KB
/
Copy pathsetup.py
File metadata and controls
40 lines (34 loc) · 1.21 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',
version='0.15.2',
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",
"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",
],
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=[
'diagnosticism',
'diagnosticism.internal',
'examples',
'tests',
],
url='https://github.com/synesissoftware/diagnosticism.Python',
)