forked from jplzhan/app-pack-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (35 loc) · 1.16 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
41
42
[build-system]
requires = ["setuptools>=62.6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "app_pack_generator"
authors = [
{ name = "James McDuffie" },
{ name = "Max Zhan" },
]
description = "Generates an OGC application package from a Jupyter Notebook by parsing its it's papermill parameterized metadata."
readme = "README.md"
keywords = ["unity-sds", "ogc", "packaging", "cwl", "jupyter"]
license = { text = "MIT 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 = "app_pack_generator.version.__version__"}
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["schemas/*", "templates/*"]