forked from bmwcarit/python-dlt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 788 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import setuptools
setuptools.setup(
name="dlt",
version="1.0",
description="Python DLT implementation for DLT",
url="https://github.com/bmwcarit/python-dlt",
author="BMW Car IT",
license="MPL 2.0",
classifiers=[ # See:https://pypi.org/classifiers/
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: System :: Logging",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
keywords="dlt log trace testing",
packages=setuptools.find_packages(exclude=["tests", "tests.*"]),
install_requires=[],
zip_safe=False,
)