-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.03 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
[project]
name = "interface_gen"
version = "0.1.0"
authors = [{ name = "Aaron Fabbri", email = "[email protected]" }]
description = "Define data format schemas once and generate code for multiple languages and serialization frameworks."
readme = "dist-readme.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Topic :: File Formats",
]
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://github.com/getditto/interface-gen"
Issues = "https://github.com/getditto/interface-gen/issues"
[project.scripts]
ifgen = "interface_gen.generate:main"
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.build.targets.wheel]
include = [
"/interface_gen",
"LICENSE",
"requirements.txt",
"README.md",
"dist-readme.md",
]
#exclude = [ ]