-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
41 lines (38 loc) · 1.03 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
[metadata]
name = cloudflare-vectorize
version = attr: cloudflare_vectorize.__version__
description = Python client for Cloudflare Vectorize API
long_description = file: README.md
long_description_content_type = text/markdown
author = ourines
author_email = [email protected]
license = MIT
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
package_dir =
= src
packages = find:
python_requires = >=3.7
install_requires =
requests>=2.25.0,<3.0.0
urllib3>=1.26.0,<2.0.0
typing-extensions>=4.0.0; python_version < "3.8"
[options.packages.find]
where = src
[options.extras_require]
dev =
pytest>=6.0
pytest-cov>=2.0
black>=22.0
isort>=5.0
mypy>=0.900
types-requests>=2.25.0