-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
40 lines (33 loc) · 1.06 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
[build-system]
requires = ["setuptools", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
dev_template = "{tag}"
dirty_template = "{tag}"
[project]
name = "aladdinsdk"
authors = [
{ name="Vedant Naik", email="[email protected]" },
]
description = "AladdinSDK"
readme = "README.md"
requires-python = ">= 3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies", "version"]
[project.scripts]
aladdinsdk-cli = "aladdinsdk.config.utils.user_settings_file_util:create_user_config_file_template"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
# [project.urls]
# Homepage = "https://github.com/pypa/aladdinsdk"
# Issues = "https://github.com/pypa/aladdinsdk/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["aladdinsdk*"] # ["*"] by default
[tool.setuptools.package-data]
aladdinsdk = ["**/*.json", "api/codegen/codegen_allow_list.yaml"]