forked from ybo-source/polnet-synaptic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.06 KB
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
[build-system]
requires = ["setuptools>=42.0.0", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "polnet"
version = "0.0.2"
description = "Python package for generating synthetic datasets of the cellular context for Cryo-Electron Tomography."
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [
{name = "Antonio Martinez-Sanchez", email = "an.martinez.s.sw@gmail.com"},
]
keywords = ["cryo electron tomogramphy", "synthetic data"]
dependencies = [
"numpy == 1.26.4",
"scipy == 1.11.4",
"mrcfile == 1.5.0",
"jax == 0.4.23",
"vtk == 9.3.0",
"pandas == 2.3.3",
"pynrrd == 1.0.0",
"scikit-image == 0.22.0",
"jupyter == 1.0.0",
"wget == 3.2",
"ipyfilechooser == 0.6.0",
"tqdm",
"black",
"pre-commit",
]
[tool.setuptools.packages]
find = {} # Scan the project directory with the default parameters
[tool.setuptools_scm]
write_to = "polnet/_version.py"
[tool.black]
line-length = 80
target-version = ['py39']
exclude = '''
/(
\.git
| \.idea
| docs
| ^data/.
)/
'''