-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 813 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 813 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aep-types"
version = "0.0.1"
authors = [
{ name="Richard Frankel", email="richard@frankel.tv" },
]
description = "AEP Types"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"jsonschema",
"PyYAML",
]
[project.urls]
"Homepage" = "https://aep.dev"
"Bug Tracker" = "https://github.com/aep-dev/aep-components/issues"
[project.optional-dependencies]
dev = [
"pytest",
"grpcio-tools",
"protobuf",
]
[tool.hatch.build]
packages = ["aep_types"]
force-include = { "../json_schema/type/decimal.yaml" = "aep_types/schemas/type/decimal.yaml" }