-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 918 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 918 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
38
39
[build-system]
requires = [
"setuptools>=61.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "rda_python_template"
version = "1.0.0"
authors = [
{ name="Zaihua Ji", email="zji@ucar.edu" },
]
description = "RDA Python code template to create new and modify existing other RDA python packages"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
]
dependencies = [
"rda_python_common",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"rda_python_tmplate" = ["hello_world.usg"]
[project.urls]
"Homepage" = "https://github.com/NCAR/rda-python-template"
[project.scripts]
hello_world = "rda_python_template.hello_world:main"