-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.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
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "plotplot"
version = "1.0.3"
description = "Drag and drop plotting, data selection, and filtering"
authors = ["Andrew Barry <[email protected]>"]
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.8"
shapely = "2.0.1"
pandas = "1.5.3"
Flask = "2.1.3"
Flask-Login = "0.4.1"
numba = "*"
numpy = "1.23.5"
gunicorn = "20.1.0"
plotly = "5.13.1"
datashader = "*"
oauthlib = "3.2.2"
pyOpenSSL = "23.1.1"
requests = "2.28.2"
google-api-python-client = "2.83.0"
google-auth-httplib2 = "0.1.0"
google-auth-oauthlib = "1.0.0"
oauth2client = "4.1.3"
Werkzeug = "2.0.3"
line_profiler = "*"
anndata = "*"
polyleven = "*"
platformdirs = "*"
waitress = "*"
[tool.poetry.scripts]
plotplot = "plotplot.plotplot:main"