-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 1.07 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
[build-system]
requires = ["setuptools>=62.6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "unity_app_generator"
authors = [
{ name = "James McDuffie" },
]
description="Generates an OGC compliant Unity application package using the Unity app-pack-generator."
readme = "README.md"
keywords = ["unity-sds", "ogc", "packaging", "cwl", "jupyter"]
license = { text = "Apache License" }
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Build Tools",
"Topic :: Utilities",
]
requires-python = ">=3.9"
dynamic = ["dependencies", "version"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "unity_app_generator.version.__version__"}
[tool.setuptools.packages.find]
where = ["."]
[project.scripts]
build_ogc_app = "unity_app_generator.__main__:main"