-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (31 loc) · 922 Bytes
/
setup.py
File metadata and controls
executable file
·35 lines (31 loc) · 922 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
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
from setuptools import find_packages, setup
with open("README.rst") as f:
readme = f.read()
with open("LICENSE") as f:
license = f.read()
setup(
name="uberlogging",
version="0.7.0",
description="Highly opinionated logging configurator",
long_description=readme,
author="Zaar Hai",
author_email="haizaar@haizaar.com",
url="https://github.com/haizaar/uberlogging",
license=license,
packages=find_packages(),
install_requires=(
"coloredlogs",
"structlog",
"humanfriendly",
"python-json-logger",
),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
],
)