-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (32 loc) · 1.15 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
import io
from setuptools import setup
with io.open("requirements.txt") as f:
install_requires = f.read().splitlines()
with io.open("test-requirements.txt") as f:
tests_require = f.read().splitlines()
with io.open("fast-requirements.txt") as f:
fast_extra_requires = f.read().splitlines()
with io.open("README.rst") as f:
long_description = f.read()
setup(
name="structlog-pretty",
version="0.4.3",
url="https://github.com/underyx/structlog-pretty",
author="Bence Nagy",
author_email="[email protected]",
maintainer="Bence Nagy",
maintainer_email="[email protected]",
download_url="https://github.com/underyx/structlog-pretty/releases",
description="A collection of structlog processors for prettier output",
long_description=long_description,
packages=["structlog_pretty"],
install_requires=install_requires,
tests_require=tests_require,
extras_require={"fast": fast_extra_requires},
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
],
)