-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
setup.py
executable file
·50 lines (48 loc) · 1.55 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
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="watchtower",
version="3.3.1",
url="https://github.com/kislyuk/watchtower",
license="Apache Software License",
author="Andrey Kislyuk",
author_email="[email protected]",
description="Python CloudWatch Logging",
long_description=open("README.rst").read(),
python_requires=">=3.8",
install_requires=[
"boto3 >= 1.9.253, < 2",
],
extras_require={
"tests": [
"pyyaml",
"ruff",
"coverage",
"build",
"wheel",
"mypy",
]
},
packages=find_packages(exclude=["test"]),
include_package_data=True,
package_data={
"watchtower": ["py.typed"],
},
platforms=["MacOS X", "Posix"],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)