forked from highcharts-for-python/highcharts-gantt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
113 lines (101 loc) · 2.83 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
[build-system]
requires = [
"hatchling>=1.6",
]
build-backend = "hatchling.build"
[project]
name = "highcharts-gantt"
description = "High-end Gantt Chart Visualization for the Python Ecosystem"
readme = "README.rst"
license-files = { paths = ["LICENSE"] }
dynamic = [
"version"
]
authors = [
{ name = "HCP LLC", email = "[email protected]" }
]
keywords = [
"highcharts",
"data visualization",
"data viz",
"charts",
"graphing",
"highcharts gantt",
"plotting",
"gantt",
"project management"
]
classifiers = [
"Development Status :: 4 - Beta",
"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 :: Office/Business :: Scheduling",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: Other/Proprietary License"
]
requires-python = ">= 3.10"
dependencies = [
"highcharts-stock>=1.0.0-rc1",
"esprima>=4.0.1",
"validator-collection>=1.5.0",
"requests>=2.28.1"
]
[tool.hatch.version]
path = "highcharts_gantt/__version__.py"
[project.urls]
"Homepage" = "https://www.highchartspython.com"
"Documentation" = "https://gantt-docs.highchartspython.com/en/latest/"
"Support" = "https://www.highchartspython.com/get-help"
"Source Code" = "https://github.com/highcharts-for-python/highcharts-gantt"
"History" = "https://github.com/highcharts-for-python/highcharts-gantt/blob/master/CHANGES.rst"
"Bug Tracker" = "https://github.com/highcharts-for-python/highcharts-gantt/issues"
# TODO: Add a Sponsor section
# "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.4.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",
"asana>=3.0.0",
"monday>=1.3.0",
"jira>=3.4.0"
]
soft = [
"IPython>=8.10.0",
"pyspark>=3.3.0",
"pandas>=1.3.3",
"orjson>=3.7.7",
"asana>=3.0.0",
"monday>=1.3.0",
"jira>=3.4.0"
]
docs = [
"Sphinx==6.1.3",
"sphinx-rtd-theme==1.2.0",
"sphinx-toolbox==3.4.0",
"sphinx-tabs==3.4.1"
]