|
1 | 1 | [project]
|
2 |
| -name = "template-data-package" |
| 2 | +name = {{ package_abbrev }} |
3 | 3 | version = "0.1.0"
|
4 |
| -description = "A template for structuring all the pieces for a data package." |
| 4 | +# TODO: Add a description of the package. |
| 5 | +description = "" |
5 | 6 | authors = [
|
6 |
| - {name = "Luke W. Johnston", email = "lwjohnst@gmail.com" }, |
7 |
| - {name = "Kristiane Beicher", email = "kris.beicher@clin.au.dk" }, |
| 7 | + {name = "{{ author_given_name }} {{ author_family_name }}", email = "{{ author_email }}" }, |
| 8 | + # TODO: Add more authors as needed. |
8 | 9 | ]
|
9 | 10 | maintainers = [
|
10 |
| - {name = "Luke W. Johnston", email = "lwjohnst@gmail.com" }, |
11 |
| - {name = "Kristiane Beicher", email = "kris.beicher@clin.au.dk" }, |
| 11 | + {name = "{{ author_given_name }} {{ author_family_name }}", email = "{{ author_email }}" }, |
| 12 | + # TODO: Add more maintainers as needed. |
12 | 13 | ]
|
13 | 14 | readme = "README.md"
|
14 |
| -license = "MIT" |
| 15 | +# TODO: Add a license for the package. |
| 16 | +license = "" |
15 | 17 | license-files = ["LICENSE.md"]
|
16 | 18 | requires-python = ">=3.12"
|
17 | 19 | dependencies = [
|
18 | 20 | "polars>=1.27.0",
|
19 |
| - "pyjanitor>=0.31.0", |
20 | 21 | "seedcase-sprout>=0.46.3",
|
21 | 22 | ]
|
22 | 23 |
|
| 24 | +{{ if package_github != "NA" }} |
23 | 25 | [project.urls]
|
24 |
| -issues = "https://github.com/seedcase-project/REPO/issues" |
25 |
| -repository = "https://github.com/seedcase-project/REPO" |
| 26 | +issues = "https://github.com/{{ package_github_repo }}/issues" |
| 27 | +repository = "https://github.com/{{ package_github_repo }}" |
| 28 | +{{ endif }} |
26 | 29 |
|
27 | 30 | [dependency-groups]
|
28 | 31 | dev = [
|
|
0 commit comments