This repository has been archived by the owner on Nov 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
118 lines (105 loc) · 3.19 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
balanced_wrapping = true
default_section = "THIRDPARTY"
force_grid_wrap = 0
include_trailing_comma = true
known_first_party = "dash_charts"
length_sort = false
line_length = 120
multi_line_output = 5
[tool.commitizen]
name = "cz_legacy"
change_type_order = [
"BREAKING CHANGE",
"Feat",
"Fix",
"Refactor",
"Perf",
"New (Old)",
"Change (Old)",
"Fix (Old)",
]
version = "0.1.2"
version_files = ["pyproject.toml", "dash_charts/__init__.py", "appveyor.yml"]
[tool.commitizen.cz_legacy_map]
Chg = "Change (Old)"
Fix = "Fix (Old)"
New = "New (Old)"
[tool.poetry]
name = "dash_charts"
version = "0.1.2"
description = "Python package for Plotly/Dash apps with support for multi-page, modules, and new charts such as Pareto with an Object Orient Approach"
license = "MIT"
authors = ["Kyle King <[email protected]>"]
maintainers = []
repository = "https://github.com/kyleking/dash_charts"
documentation = "https://github.com/kyleking/dash_charts/docs"
readme = "docs/README.md"
include = ["LICENSE.md"]
keywords = ["plotly-dash", "plotly-python"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Framework :: Dash",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Database :: Front-Ends",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Application Frameworks",
] # https://pypi.org/classifiers/
# And based on: https://github.com/plotly/dash/blob/6cfb7874800152794d8d603e8d9c4334bf61e3fd/setup.py#L47-L70
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/kyleking/dash_charts/issues"
"Changelog" = "https://github.com/kyleking/dash_charts/blob/main/docs/docs/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.8"
attrs-strict = ">=0.2.2"
calcipy = ">=0.11.0"
cerberus = ">=1.3.4"
dash-bootstrap-components = ">=1.0.0"
dataset = ">=1.5.2"
dominate = ">=2.6.0"
implements = ">=0.3.0"
lxml = ">=4.7.1"
markdown = ">=3.3.6"
numpy = ">=1.22.2"
Palettable = ">=3.3.0"
pandas = ">=1.3.0"
psutil = ">=5.9.0"
python-box = ">=5.4.1"
scipy = ">=1.6.1"
tqdm = ">=4.62.3"
# sqlite-utils = "*"
# datasette-vega = "*"
# great-expectations = "*"
# FIXME: Required only for nox_coverage and optional for subset of use cases
astor = ">=0.8.1"
jsonpickle = ">=2.1.0"
beautifulsoup4 = ">=4.10.0"
# FIXME: In-progress testing of a better dash table
dash-tabulator = ">=0.4.2"
dash-extensions = ">=0.0.55"
[tool.poetry.dev-dependencies]
calcipy = { version = "*", extras = [
"dev",
"lint",
"test",
"commitizen_legacy",
] }
# Experimental dependencies
# archan = { git = "https://github.com/pawamoy/archan.git" }
# dependenpy = "^3.3.0"
# archan-pylint = { git = "https://github.com/pawamoy/archan-pylint" }
# FIXME: testing extras are required for nox-coverage
[tool.poetry.dependencies.dash]
# [tool.poetry.dev-dependencies.dash]
extras = ["testing"]
version = ">=2.0.0"
[tool.poetry.extras]
matplotlib = ["matplotlib"]