forked from materialscloud-org/seekpath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.5 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
47
48
49
50
51
52
53
[build-system]
build-backend = 'flit_core.buildapi'
requires = ['flit_core >=3.4,<4']
[project]
name = "seekpath"
dynamic = ['version']
description = "A module to obtain and visualize k-vector coefficients and obtain band paths in the Brillouin zone of crystal structures"
keywords = ["path", "band structure", "Brillouin", "crystallography", "physics", "primitive cell", "conventional cell"]
readme = "README.md"
authors = [
{name = "Giovanni Pizzi"},
]
maintainers = [
{name = "Timo Reents"}
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.0",
"spglib>=1.14.1",
]
license = {text = "The MIT license"}
[project.urls]
Homepage = "https://github.com/materialscloud-org/seekpath"
Downloads = "https://github.com/materialscloud-org/seekpath/archive/v2.2.0.tar.gz"
[project.optional-dependencies]
bz = [
"scipy>=1",
]
dev = [
"black==23.3.0",
"pre-commit~=3.5",
"prospector==1.11.0",
"pytest==7.3.1",
]
[tool.ruff.format]
quote-style = 'single'