-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (45 loc) · 1.37 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
[project]
name = "nachos"
dynamic = ["version"]
authors = [
{name = "Pierre Beaujean", email = "pierre.beaujean@unamur.be"},
]
description = "NACHOS: numerical differentiation code"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
'pyyaml>=5.0',
'h5py',
'qcip-tools @ git+https://github.com/pierre-24/qcip_tools.git@v0.7.2',
'prompt_toolkit',
'pandas>=1.2',
'scipy>=1.7',
'numpy>=1.20'
]
[project.urls]
documentation = "https://pierre-24.github.io/nachos/"
repository = "https://github.com/pierre-24/nachos.git"
[project.scripts]
# keep that alphabetical
nachos_make = 'nachos.make:main'
nachos_prepare = 'nachos.prepare:main'
nachos_cook = 'nachos.cook:main'
nachos_bake = 'nachos.bake:main'
nachos_shake = 'nachos.shake:main'
nachos_analyze = 'nachos.analyze:main'
nachos_peek = 'nachos.peek:main'
[tool.setuptools]
packages = ['nachos', 'nachos.core', 'nachos.qcip_tools_ext']
[tool.setuptools.dynamic]
version = {attr = "nachos.__version__"}