-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
45 lines (40 loc) · 970 Bytes
/
setup.cfg
File metadata and controls
45 lines (40 loc) · 970 Bytes
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
[metadata]
name = numexa
version = attr: numexa.version.VERSION
description = Python client library for the Numexa API
long_description = file: README.md
long_description_content_type = text/markdown
author = dreamcode1994
author_email = 118388087+dreamcode1994@users.noreply.github.com
url = https://github.com/numexa-python-sdk
license_files = LICENSE
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = find:
python_requires = >=3.8
zip_safe = True
include_package_data = True
install_requires =
httpx
mypy==0.991
black==23.7.0
typing_extensions==4.7.1
pydantic==1.10.12
[options.entry_points]
console_scripts =
numexa = numexa._numexa_scripts:main
[options.package_data]
numexa = py.typed
[options.extras_require]
dev =
mypy==0.991
black==23.7.0
typing_extensions==4.7.1
pydantic==1.10.12
[options.packages.find]
exclude =
tests
tests.*