-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (55 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
70 lines (55 loc) · 1.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "plotplot"
version = "1.0.7"
description = "Drag and drop plotting, data selection, and filtering"
authors = ["Andrew Barry <abarry@gmail.com>"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://plotplot.org"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
include = [
"plotplot",
"frontend/build/**/*",
]
[tool.poetry.dependencies]
python = ">=3.10"
# Core stack
numpy = ">=1.26,<2.0"
pandas = ">=2.1"
numba = ">=0.59"
# Viz / rasterization
plotly = "=5.13.1"
datashader = ">=0.16.0"
dask = ">=2024.5.0"
shapely = ">=2.0.3"
# Web
Flask = ">=2.3.3,<3.0" # or use Flask="^3.0" and Werkzeug="^3.0"
Flask-Login = ">=0.6.3"
Werkzeug = ">=2.3,<3.0" # drop if you move to Flask 3.0
# Serving / misc
gunicorn = ">=21.2"
waitress = "*"
# Google / OAuth (remove oauth2client)
oauthlib = ">=3.2.2"
google-api-python-client = ">=2.126"
google-auth-httplib2 = ">=0.2.0"
google-auth-oauthlib = ">=1.2.0"
# TLS / HTTP
pyOpenSSL = ">=24.0"
requests = ">=2.31"
# Utilities
line_profiler = ">=4.1"
anndata = "*"
polyleven = "*"
platformdirs = "*"
# Ensure distutils shim during builds
setuptools = ">=68"
[tool.poetry.scripts]
plotplot = "plotplot.plotplot:main"