-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.36 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pulp-glue-gem"
version = "0.6.0.dev"
description = "Version agnostic glue library to talk to pulpcore's REST API. (Gem plugin)"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "GPLv2+"}
authors = [
{name = "Pulp Team", email = "pulp-list@redhat.com"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: System :: Software Distribution",
"Typing :: Typed",
]
dependencies = [
"pulp-glue<0.38,>=0.23.1",
]
[project.urls]
repository = "https://github.com/pulp/pulp-cli-gem"
changelog = "https://github.com/pulp/pulp-cli-gem/blob/main/CHANGES.md"
[tool.setuptools.packages.find]
where = ["."]
include = ["pulp_glue.*"]
namespaces = true
[tool.setuptools.package-data]
"*" = ["py.typed", "locale/*/LC_MESSAGES/*.mo"]
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
strict = true
show_error_codes = true
files = "pulp_glue/**/*.py"
namespace_packages = true
explicit_package_bases = true
[[tool.mypy.overrides]]
module = [
"schema.*",
]
ignore_missing_imports = true