-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
60 lines (54 loc) · 1.29 KB
/
setup.cfg
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
51
52
53
54
55
56
57
58
59
60
[metadata]
name = pydataapi
description = py-data-api is a user-friendly client for AWS Aurora Serverless's Data API
url = https://github.com/koxudaxi/py-data-api
long_description = file: README.md
long_description_content_type = text/markdown
author = Koudai Aono
author_email = [email protected]
license_file = LICENSE
classifiers =
Development Status :: 3 - Alpha
Natural Language :: English
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
[options]
packages = find:
include_package_data = True
python_requires = >=3.6.1
zip_safe = True
setup_requires =
pytest-runner
setuptools-scm
install_requires =
boto3 >=1.12.7,<2
SQLAlchemy >=1.3.13,<1.4
pydantic >=1.8,<1.9
more-itertools >= 8.0.2,<8.5
tests_require =
pytest
pytest-benchmark
pytest-cov
pytest-mock
pytest-docker-compose
mypy
black
isort>=5.0.7
PyMySQL
docker-compose
requests == 2.20.1
[options.extras_require]
docs =
mkdocs
mkdocs-material
wheel =
wheel
twine
ci =
codecov
[aliases]
test = pytest