-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
64 lines (55 loc) · 1.7 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "sphericart"
dynamic = ["version", "optional-dependencies"]
requires-python = ">=3.8"
dependencies = ["numpy<2.0.0"]
readme = "README.md"
license = {text = "Apache-2.0 or MIT"}
description = "Fast calculation of spherical harmonics"
authors = [
{name = "Filippo Bigi"},
{name = "Guillaume Fraux"},
{name = "Nicholas Browning"},
{name = "Michele Ceriotti"},
]
keywords = ["spherical harmonics"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
homepage = "https://github.com/lab-cosmo/sphericart"
documentation = "https://sphericart.readthedocs.io/en/latest/"
repository = "https://github.com/lab-cosmo/sphericart"
### ======================================================================== ###
[build-system]
requires = [
"setuptools >=44",
"wheel >=0.36",
"cmake",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
where = ["python/src"]
include = ["sphericart*"]
namespaces = false
### ======================================================================== ###
[tool.isort]
skip = "__init__.py"
profile = "black"
line_length = 88
indent = 4
include_trailing_comma = true
lines_after_imports = 2
known_first_party = ["sphericart"]