-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (59 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (59 loc) · 1.73 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# SPDX-License-Identifier: AGPL-3.0-or-later
# SPDX-FileCopyrightText: University of Washington <https://www.washington.edu>
# SPDX-FileContributor: 2021-26 Bradley M. Bell
# ----------------------------------------------------------------------------
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml
#
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
#
[project]
#
# Basic Information
name = 'at_cascade'
version = '2026.4.4'
#
# Dependencies and reqirements
requires-python = '>=3.8'
dependencies = [
'dismod_at',
'numpy',
'scipy',
]
#
# Creating executable scipts
# None
#
# About this project
description = 'Cascading dismod_at from parent to child regions'
# readme = readme.rst # 2DO
license = 'AGPL-3.0-or-later'
license-files = [ 'agpl-3.0.txt' ]
authors = [
{name = 'Bradley M. Bell', email = 'bradbell@seanet.com'},
]
maintainers = [
{name = 'Bradley M. Bell', email = 'bradbell@seanet.com'},
]
keywords = [ 'public health', 'disease modeling', 'dismod_at' ]
classifiers = [ # see https://pypi.org/classifiers/
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
]
#
# urls
[project.urls]
Documentation = 'https://at-cascade.readthedocs.io'
Homepage = 'https://at-cascade.readthedocs.io'
Changelog = 'https://at-cascade.readthedocs.io/latest/release_notes.html'
Repository = 'https://github.com/bradbell/at_cascade'
Issues = 'https://github.com/bradbell/at_cascade/issues'
#
# ----------------------------------------------------------------------------
# https://hatch.pypa.io/latest/config/build/
[tool.hatch.build.targets.sdist]
include = [
"at_cascade/*.py",
"at_cascade/csv/*.py",
]