-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 873 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 873 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
39
[project]
name = "excitingtools"
description = "Utilities for aiding in the construction of exciting inputs and the postprocessing exciting outputs."
version = "1.1.0"
authors = [
{ name = "Alexander Buccheri", email = "[email protected]"},
{ name = "Fabian Peschel", email = "[email protected]"}
]
license = {file = "COPYING.md"}
readme = "README.md"
requires-python = ">=3.6"
dependencies = [
'wheel>=0.35.0',
'numpy>=1.14.5',
'matplotlib>=2.2.0',
]
[project.optional-dependencies]
dev = [
"pytest",
"ase>=3.20.0"
]
[project.urls]
repository = "https://github.com/exciting/excitingtools"
[build-system]
requires = [
"setuptools >= 35.0.2",
"setuptools_scm >= 3.5.0"
]
build-backend = "setuptools.build_meta"
[tool.distutils.bdist_wheel]
universal = true
[tool.setuptools]
packages = ["excitingtools"]