-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpyproject.toml
49 lines (41 loc) · 1.45 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "elastic"
dependencies = [
"ase",
"spglib",
"numpy",
"scipy",
"click",
]
authors = [
{name = "Paweł T. Jochym", email = "[email protected]"},
{name = "Georgios Tritsaris", email = "[email protected]"},
]
maintainers = [
{name = "Paweł T. Jochym", email = "[email protected]"},
]
description = "Extension for ASE to calculate elastic constants"
readme = "README.md"
license = {text = "GPLv3"}
keywords = ['science', 'physics', 'ase', 'elastic constants', 'crystals']
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
]
[project.scripts]
elastic = "elastic.cli.elastic:cli"
[project.urls]
Homepage = "https://wolf.ifj.edu.pl/elastic"
Documentation = "http://elastic.rtfd.org/"
Repository = "https://github.com/jochym/Elastic"
Issues = "https://github.com/jochym/Elastic/issues"
Changelog = "https://github.com/jochym/Elastic/blob/master/CHANGELOG.md"
[tool.setuptools.packages]
find = {} # Scan the project directory with the default parameters
[tool.setuptools_scm]
version_file = "elastic/_version.py"