-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 1.05 KB
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kusp"
#dynamic = ["version"]
version = "2.0.0"
description = "KUSP: KIM Utility for Serving Potentials"
authors = [
{ name = "Amit Gupta", email = "gupta839@umn.edu" },
]
readme = { file = ".pypi_readme.md", content-type = "text/markdown" }
requires-python = ">=3.8"
dependencies = [
"loguru",
"numpy",
"PyYAML",
"click",
]
[project.urls]
Homepage = "https://github.com/openkim/kusp"
[project.scripts]
kusp = "kusp.cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["kusp", "kusp.*"]
[tool.setuptools.package-data]
kusp = [
"KUSP__MO_000000000000_000/**/*",
"KUSP__MO_000000000000_000/*",
"KUSP__MO_000000000000_000/**/*.cpp",
"KUSP__MO_000000000000_000/**/*.h",
"KUSP__MD_000000000000_000/**/*",
"KUSP__MD_000000000000_000/*",
"KUSP__MD_000000000000_000/**/*.cpp",
"KUSP__MD_000000000000_000/**/*.h",]
#[tool.setuptools.dynamic]
#version = { attr = "kusp.__version__.__version__" }