-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
executable file
·76 lines (70 loc) · 2.12 KB
/
pyproject.toml
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# This section defines the build requirements.
[build-system]
# Necessary packages for the build system.
requires = ["setuptools", "wheel"]
# Backend of the build system.
build-backend = "setuptools.build_meta"
# Metadata about your package.
[project]
name = "ebay_rest"
version = "1.0.9"
license = {text = "MIT"}
authors = [
{name = "Peter JOHN Matecsa", email = "[email protected]"}
]
description = "Wraps the eBay REST APIs."
readme = "README.md"
requires-python = ">=3.9"
keywords = ["ebay", "api", "rest"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Internet"
]
dependencies = ["certifi", "cryptography", "requests", "python-dateutil", "six", "urllib3"]
[project.urls]
Homepage = "https://github.com/matecsaj/ebay_rest"
Repository = "https://github.com/matecsaj/ebay_rest.git"
Issues = "https://github.com/matecsaj/ebay_rest/issues"
# Options for building and distributing the package.
[tool.setuptools]
package-dir = {"" = "src"}
packages = {find = {where = ["src"]}}
include-package-data = true
# Optional dependencies.
[project.optional-dependencies]
# The 'complete' installation requires an additional step:
# After installing, run: `playwright install chromium`
complete = ["playwright"]
# Swagger Codegen must be installed separately:
# Mac: `brew install swagger-codegen`
# Other OS: Install manually from https://github.com/swagger-api/swagger-codegen
dev = [
"aiofiles",
"aiohttp",
"black",
"bs4",
"build",
"CurrencyConverter",
"pipreqs",
"setuptools",
"twine",
"wheel"
]
# Package data to include.
[tool.setuptools.package-data]
"ebay_rest" = ["references/*.json"]
# This section is used to configure Black, a Python code formatter.
[tool.black]
# Extend Black's default exclusion list to ignore certain files and directories.
# Exclude directories that contain Swagger generated code.
extend-exclude = """
(
src/scripts/api_cache
| src/ebay_rest/api/
)
"""