-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsetup.py
executable file
·32 lines (30 loc) · 1.15 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="aurora-data-api",
version="0.5.0",
url="https://github.com/chanzuckerberg/aurora-data-api",
license="Apache Software License",
author="Andrey Kislyuk",
author_email="kislyuk@gmail.com",
description="A Python DB-API 2.0 client for the AWS Aurora Serverless Data API",
long_description=open("README.rst").read(),
install_requires=["boto3 >= 1.34.10, < 2"],
extras_require={},
packages=find_packages(exclude=["test"]),
platforms=["MacOS X", "Posix"],
test_suite="test",
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)