-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
39 lines (33 loc) · 1003 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
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "e4s-alc"
authors = [
{name = "Cameron Durbin", email = "cfd@uoregon.edu"},
{name = "Frederick Deny", email = "fdeny@uoregon.edu"},
]
description = "Build Dockerfiles quickly with Spack integration."
readme = "README.md"
requires-python = ">=3.7"
keywords = ["containers", "hpc", "libraries", "linux"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"License :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
dependencies = ['pyyaml']
dynamic = ["version"]
[project.urls]
repository = "https://github.com/E4S-Project/e4s-alc.git"
[tool.setuptools.packages]
find = {}
[project.scripts]
e4s-alc = "e4s_alc.cli.entry:main"
[tool.setuptools_scm]
write_to = "e4s_alc/version.py"