-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 773 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 773 Bytes
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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[project]
name = "plotlyshare"
version = "1.0.9"
authors = [{name="plutonium239", email="plutonium.239.811@gmail.com"}]
description = "Link-based sharing of `plotly` plots with a private web app"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"rich",
"plotly",
"wonderwords",
"requests"
]
keywords = ["plotly", "interactive", "plot"]
[project.urls]
Homepage = "https://github.com/plutonium-239/plotlyshare"
Issues = "https://github.com/plutonium-239/plotlyshare/issues"
[tool.flit.sdist]
exclude = ["*/config.json"]