-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (63 loc) · 2.63 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#--------------------------------------------------------------------------------------------------#
######################################### Package Config ###########################################
#__________________________________________________________________________________________________#
[project]
name = "orcestra-downloader"
version = "0.11.0"
description = "Simplified access to download data from orcestra.ca"
license = "MIT"
readme = "README.md"
keywords = ["orcestra-downloader", "pixi", "python"]
authors = [{ name = "Jermiah Joseph", email = "[email protected]" }]
maintainers = [{ name = "Jermiah Joseph", email = "[email protected]" }]
classifiers = [
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
requires-python = ">= 3.10"
dependencies = [
"rich",
"aiohttp>=3.11.4",
"click>=8.1.7",
]
[project.urls]
homepage = "https://github.com/bhklab/orcestra-downloader"
repository = "https://github.com/bhklab/orcestra-downloader"
documentation = "https://bhklab.github.io/orcestra-downloader/"
changelog = "https://github.com/bhklab/orcestra-downloader/blob/main/docs/CHANGELOG.md"
issues = "https://github.com/bhklab/orcestra-downloader/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
orcestra = "orcestradownloader.cli.cli:cli"
[tool.hatch.version]
# Path to file containing version string
# https://hatch.pypa.io/latest/version/#sources
path = "src/orcestradownloader/__init__.py"
[tool.hatch.build]
# Output directory for built distributions
# https://hatch.pypa.io/latest/config/build/#output-directory
directory = "dist"
# Include package data files
# https://hatch.pypa.io/latest/config/build/#include-package-data
include-package-data = true
# Generate reproducible builds
# https://hatch.pypa.io/latest/config/build/#reproducible
reproducible = false
[tool.hatch.build.targets.wheel]
# A Wheel is a built distribution format
# https://packaging.python.org/en/latest/specifications/binary-distribution-format/
# https://hatch.pypa.io/latest/plugins/builder/wheel/
packages = ["src/orcestradownloader"]
[tool.hatch.build.targets.sdist]
# A Source Distribution (or "sdist") is a built distribution format
# https://packaging.python.org/en/latest/specifications/source-distribution-format/
# https://hatch.pypa.io/latest/plugins/builder/sdist/
include = ["src/orcestradownloader"]