-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
45 lines (38 loc) · 1.01 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
[metadata]
name = oxley
description = Dynamically generate pydantic classes from JSONschema at runtime
long_description = file: README.md, LICENSE
long_description_content_type = text/markdown
url = https://github.com/jsstevenson/oxley
download_url = https://github.com/jsstevenson/oxley/releases
project_urls =
Bug Tracker = https://github.com/jsstevenson/oxley/issues
author = James Stevenson
author_email = [email protected]
maintainer = James Stevenson
maintainer_email = [email protected]
license = MIT
license_files = LICENSE
version = attr: oxley.version.__version__
keywords = typing, pydantic, JSONschema
classifiers =
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
package = oxley
install_requires =
pydantic
requests
[options.extras_require]
dev =
tox
pre-commit
black
mypy
types-requests
isort
flake8
test =
pytest