-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 985 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 985 Bytes
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
[project]
name = "cqdyn"
version = "1.0.0"
authors = [
{ name="Jiri Janos", email="jiri.janos98@gmail.com" }
]
license = {file = 'LICENSE'}
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering'
]
description = "Python package for coefficient-based quantum dynamics simulations."
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"numpy>=1.20",
"matplotlib>=3.9.0",
]
[project.urls]
Homepage = "https://github.com/JanosJiri/cqdyn"
Documentation = "https://github.com/JanosJiri/cqdyn/blob/main/README.md"
Repository = "git@github.com:JanosJiri/cqdyn.git"
Issues = "https://github.com/JanosJiri/cqdyn/issues"
[project.scripts]
cqdyn = "cqdyn:main"
[project.optional-dependencies]
test = [
"pytest>=7.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"