-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 1 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
[build-system]
requires = ["flit_core >=3.8,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "topsy"
authors = [{name = "Andrew Pontzen", email = "[email protected]"}]
dynamic = ["version", "description"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
]
readme = 'README.md'
requires-python = ">=3.10"
dependencies = [
"numpy >=1.16.0",
"pynbody >=1.3.0",
"matplotlib >=3.6.0",
"pillow >=9.5.0", # 9.5.0 needed for Image.frombytes accepting memoryview
"wgpu >= 0.15, <0.16",
"jupyter_rfb >=0.4.1",
"tqdm >=4.62.0",
"opencv-python >=4.8.0",
"PySide6 >= 6.5.0" # windowing
]
[project.optional-dependencies]
test = [
"pytest >=6.2.0",
]
[project.scripts]
topsy = "topsy:main"
[project.urls]
Home = "https://github.com/pynbody/topsy"