-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (50 loc) · 1.46 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
# ======================================================================================
# Project metadata
# ======================================================================================
[project]
name = "flexible_ddcm"
description = "dynamic choice models."
requires-python = ">=3.12"
dependencies = [
"numpy",
"pandas",
]
dynamic = ["version"]
keywords = [
"Estimation"
]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
authors = [
{ name = "Moritz Mendel", email = "[email protected]" },
]
maintainers = [
{ name = "Moritz Mendel", email = "[email protected]" },
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
text = "MIT"
[project.urls]
Repository = "https://github.com/mo2561057/flexible_ddcm"
Github = "https://github.com/mo2561057/flexible_ddcm"
Tracker = "https://github.com/mo2561057/flexible_ddcm/issues"
# ======================================================================================
# Build system configuration
# ======================================================================================
[build-system]
requires = ["hatchling", "hatch_vcs"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = ["tests"]
only-packages = true
[tool.hatch.build.targets.wheel]
only-include = ["src"]
sources = ["src"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.metadata]
allow-direct-references = true