This repository was archived by the owner on Dec 11, 2023. It is now read-only.
forked from kiwicom/structlog-sentry
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (33 loc) · 1.24 KB
/
setup.py
File metadata and controls
38 lines (33 loc) · 1.24 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
from setuptools import find_packages, setup
with open("requirements.in") as f:
install_requires = [line for line in f if line and line[0] not in "#-"]
with open("test-requirements.in") as f:
tests_require = [line for line in f if line and line[0] not in "#-"]
with open("README.md") as f:
readme = f.read()
setup(
name="structlog-sentry",
version="1.1.0",
url="https://github.com/kiwicom/structlog-sentry",
long_description=readme,
long_description_content_type="text/markdown",
author="Pavel Dedík",
author_email="pavel.dedik@kiwi.com",
packages=find_packages(),
python_requires=">=3.5",
install_requires=install_requires,
tests_require=tests_require,
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)