-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
32 lines (27 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
from typing import Sequence
from setuptools import find_packages, setup
def get_requirements() -> Sequence[str]:
with open("requirements.txt") as fp:
return [x.strip() for x in fp if not x.startswith("#")]
setup(
name="sentry-arroyo",
version="2.18.1",
author="Sentry",
author_email="[email protected]",
license="Apache-2.0",
url="https://github.com/getsentry/arroyo",
description="Arroyo is a Python library for working with streaming data.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests", "examples"]),
package_data={"arroyo": ["py.typed","utils/metricDefs.json"]},
zip_safe=False,
install_requires=get_requirements(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)