-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 1.12 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "api-client-generator"
version = "0.1.0" # Update this version number for each new release
description = "Automatically generate Python API clients from OpenAPI specifications"
readme = "README.md"
authors = [{ name = "Brij Kishore Pandey", email = "brij.pydata@gmail.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
keywords = ["api", "client", "generator", "openapi", "swagger"]
dependencies = [
"requests>=2.26.0",
"aiohttp>=3.7.4,<4.0.0",
"jinja2>=3.0.1",
"pyyaml>=6.0",
"jsonschema>=4.4.0",
]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://github.com/yourusername/api-client-generator"
"Bug Tracker" = "https://github.com/yourusername/api-client-generator/issues"
[tool.setuptools.packages.find]
where = ["src"]
include = ["api_client_generator*"]
exclude = ["tests*"]