-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
114 lines (102 loc) · 2.88 KB
/
pyproject.toml
File metadata and controls
114 lines (102 loc) · 2.88 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
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
[build-system]
requires = [
"hatchling>=1.6",
]
build-backend = "hatchling.build"
[project]
name = "highcharts-core"
description = "High-end Data Visualization for the Python Ecosystem. Official wrapper for Highcharts Core (JS)."
readme = "README.rst"
license-files = { paths = ["LICENSE"] }
dynamic = [
"version"
]
authors = [
{ name = "HCP LLC", email = "support@highchartspython.com" }
]
keywords = [
"highcharts",
"data visualization",
"data viz",
"charts",
"graphing",
"highcharts JS",
"plotting"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"Framework :: Jupyter",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Office/Business",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: Other/Proprietary License"
]
requires-python = ">= 3.10"
dependencies = [
"esprima>=4.0.1",
"validator-collection>=1.5.0",
"requests>=2.32.0"
]
[tool.hatch.version]
path = "highcharts_core/__version__.py"
[project.urls]
"Homepage" = "https://highchartspython.com"
"Documentation" = "https://core-docs.highchartspython.com/en/latest/"
"Support" = "https://www.highchartspython.com/get-help"
"Source Code" = "https://github.com/highcharts-for-python/highcharts-core"
"History" = "https://github.com/highcharts-for-python/highcharts-core/blob/master/CHANGES.rst"
"Bug Tracker" = "https://github.com/highcharts-for-python/highcharts-core/issues"
"Demo" = "https://github.com/highcharts-for-python/highcharts-for-python-demos"
"Sponsor" = "https://github.com/sponsors/highcharts-for-python"
[project.optional-dependencies]
dev = [
"pytest>=7.0.2",
"pytest-cov>=3.0.0",
"pytest-xdist>=2.5.0",
"python-dotenv>=1.0.0",
"pytz>=2022.1",
"Sphinx==6.1.3",
"sphinx-rtd-theme==1.2.0",
"sphinx-toolbox>=3.6.0",
"sphinx-tabs==3.4.1",
"tox>=4.0.0",
"IPython>=8.10.0",
"pyspark>=3.3.0",
"pandas>=1.3.3",
"orjson>=3.7.7",
"anthropic>=0.3.11",
"dill>=0.3.7",
"openai>=0.28.0"
]
soft = [
"IPython>=8.10.0",
"pyspark>=3.3.0",
"pandas>=1.3.3",
"orjson>=3.7.7",
"anthropic>=0.3.11",
"dill>=0.3.7",
"openai>=0.28.0"
]
ai = [
"anthropic>=0.3.11",
"dill>=0.3.7",
"openai>=0.28.0"
]
docs = [
"Sphinx==6.1.3",
"sphinx-rtd-theme==1.2.0",
"sphinx-toolbox>=3.6.0",
"sphinx-tabs==3.4.1"
]