-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 1.07 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
# Copyright (C) 2020 Arrai Innovations Inc. - All Rights Reserved
from setuptools import setup
from shy_sentry import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as req:
install_requires = [x for x in req.read().split("\n") if x]
setup(
name="shy-sentry",
url="https://github.com/arrai-innovations/shy-sentry/",
version=__version__,
description="sentry-sdk but quite",
long_description=long_description,
long_description_content_type="text/markdown",
author="Arrai Innovations",
author_email="[email protected]",
packages=["shy_sentry"],
install_requires=install_requires,
license="LICENSE",
# test_suite="tests",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
],
)