-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 878 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 878 Bytes
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
[build-system]
requires = ["hatchling", "patchelf; sys_platform == 'linux'"]
build-backend = "hatchling.build"
[tool.hatch.build.hooks.custom]
path = "buildUtil/build.py"
[tool.hatch.build.targets.sdist.force-include]
"mikecore/bin" = "mikecore/bin"
[tool.hatch.build.targets.wheel.force-include]
"mikecore/bin" = "mikecore/bin"
[project]
name = "mikecore"
version = "0.3.0a0"
description = "MIKE Core contains core libraries, like DFS (Data File System), EUM and more."
readme = "README.md"
license = { file = "LICENSE.txt" }
authors = [
{ name = "DHI", email = "mike@dhigroup.com" }
]
requires-python = ">=3.5"
dependencies = [
"numpy"
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3"
]
[project.urls]
Homepage = "https://github.com/DHI/mikecore-python"
[dependency-groups]
dev = [
"pytest>=6.1.2",
]