-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 loc) · 974 Bytes
/
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
[project]
name = "pyhaywoodcc"
authors = [
{ name = "David Onder", email = "[email protected]" }
]
description = "A module of tools used by HCC staff"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"connectorx",
"duckdb",
"pandas",
"polars",
"pycolleague" # = {ref = "main", git = "git+https://github.com/Haywood-Community-College-IERG/pycolleague.git"}
]
license = {file = "license.txt"}
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/hcc-donder/pyhaywoodcc"
Issues = "https://github.com/hcc-donder/pyhaywoodcc/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/pyhaywoodcc/__init__.py"
# [tool.hatch.build.targets.wheel]
# only-include = ["src/pyhaywoodcc", "data/*.csv"]
# [tool.hatch.build.targets.wheel.sources]
# "src" = ""
# "data" = "data/*.csv"
[tool.hatch.build.targets.sdist]
include = [
"src/pyhaywoodcc",
"data/*.csv"
]