-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (29 loc) · 1.01 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "wxnucos"
authors = [
{name = "Christopher H Barker", email="Chris.Barker@noaa.gov"},
]
description = "Unit conversion GUI utility: designed for Oil Spills"
readme = "README.rst"
requires-python = ">=3.12"
license = {text = "CC-0: Public Domain"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"wxpython",
"pynucos",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "wxnucos.__version__"}
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
# include = ["my_package*"] # package names should match these glob patterns (["*"] by default)
# exclude = ["my_package.tests*"] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[tool.setuptools.package-data]
wxnucos = ["help/*", "help/Images/*"]