-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 1.01 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "cryosbi"
authors = [
{ name = "David Silva-Sanchez", email = "[email protected]"},
{ name = "Lars Dingeldein"},
{ name = "Pilar Cossio"},
{ name = "Roberto Covino"}
]
#description = "My package description"
#readme = "README.rst"
#requires-python = ">=3.7"
#keywords = ["one", "two"]
#license = {text = "BSD-3-Clause"}
#classifiers = [
# "Framework :: Django",
# "Programming Language :: Python :: 3",
#]
version = "0.2"
dependencies = [
"lampe",
"zuko",
"torch",
"numpy",
"matplotlib",
"scipy",
"torchvision",
"mrcfile"
]
#dynamic = ["version"]
#[project.optional-dependencies]
#pdf = ["ReportLab>=1.2", "RXP"]
#rest = ["docutils>=0.3", "pack ==1.1, ==1.3"]
#[project.scripts]
#my-script = "my_package.module:function"
# ... other project metadata fields as specified in:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/