-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
86 lines (78 loc) · 2 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ['setuptools>=61.0', 'setuptools-scm>=8.0', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = 'casino'
version = '0.3.0'
description = 'Quantum Monte Carlo for electrons in real space'
authors = [
{name = "Vladmir Konkov", email = "[email protected]"},
]
maintainers = [
{name = "Vladmir Konkov", email = "[email protected]"},
]
readme = "README.md"
license = {text = 'MIT'}
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Chemistry',
'Programming Language :: Python',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
requires-python = ">=3.10"
# https://scientific-python.org/specs/spec-0000/
dependencies = [
'numba>=0.59.0',
'mpi4py>=3.1.0',
'pyblock>=0.6.0',
'numpy>=1.24.0',
'scipy>=1.10.0',
'pyyaml>=6.0.0', # for gjastrow reader
'matplotlib>=3.6.0',
'pandas>=2.0.2', # for pyblock
'statsmodels==0.14.4',
]
[project.optional-dependencies]
dev = [
# 'sympy>=1.12.0',
# 'isort',
# 'icc-rt', # Intel(R) Compiler Runtime
# 'tbb', # threading layer backed by Intel TBB
# 'opt_einsum>=3.3.0',
'pytest>=8.0.0',
]
doc = [
'sphinx',
'Jinja2',
'toml',
]
[project.urls]
repository = 'https://github.com/Konjkov/pycasino'
documentation = 'https://konjkov.github.io/pycasino.github.io/'
[project.scripts]
chemist = 'casino.chemist:main'
pycasino = 'casino.pycasino:main'
[tool.setuptools]
packages = ["casino", "casino.readers", "casino.tests"]
[tool.setuptools.data-files]
"casino.tests" = ["inputs/*/*"]
[tool.ruff]
src = ["casino"]
line-length = 150
respect-gitignore = true
[tool.ruff.lint]
ignore = [
"E741" # ambiguous-variable-name
]
[tool.ruff.format]
indent-style = "space"
line-ending = "auto"
quote-style = "single"
exclude = [
"pycasino.py"
]