-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
34 lines (30 loc) · 1.05 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
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("README.rst") as f:
long_description = f.read()
setup(
name="aiohttp-sentry",
version="0.6.0",
url="https://github.com/underyx/aiohttp-sentry",
author="Bence Nagy",
author_email="[email protected]",
maintainer="Bence Nagy",
maintainer_email="[email protected]",
download_url="https://github.com/underyx/aiohttp-sentry/releases",
description="An aiohttp middleware for reporting errors to Sentry",
long_description=long_description,
packages=["aiohttp_sentry"],
install_requires=install_requires,
tests_require=tests_require,
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
],
)