-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (30 loc) · 1.13 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "strawberrypy"
authors = [{name = "Roberta Favata", email = "roberta.favata@phd.units.it"},
{name = "Nicolas Baù", email = "nicolas.bau@phd.units.it"},
{name = "Antimo Marrazzo", email="amarrazz@sissa.it"}]
version = "0.3.1"
description = "Python package for calculation of topological invariants through single-point formulas and local markers"
keywords = ["physics", "tight-binding", "topology", "single-point invariants", "local topological markers", "wannier90"]
readme = "README.rst"
license = {file = "LICENSE.txt"}
requires-python = ">= 3.8"
dependencies = [
'wannierberri[all]==0.15.0',
'pythtb==1.8.0',
'tbmodels==1.4.3',
'opt-einsum==3.3.0'
]
classifiers = ["Programming Language :: Python :: 3.8"]
[project.urls]
repository = "https://github.com/strawberrypy-developers/strawberrypy.git"
documentation = "http://strawberrypy.readthedocs.io/"
[project.optional-dependencies]
devs = ["sphinx",
"sphinx-copybutton",
"sphinxawesome-theme",
"sphinx_book_theme",
]