forked from kyper-data/python-highcharts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
62 lines (55 loc) · 1.62 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
[build-system]
requires = ['setuptools >=62']
build-backend = 'setuptools.build_meta'
[project]
name = "highcharts-excentis"
description = "Python Highcharts wrapper"
dynamic = ['version']
# Build tool / pip should detect content-type automatically:
readme = "README.md"
authors = [{ name = 'Kyper Developers', email = '[email protected]' }]
maintainers = [
{ name = 'Excentis Development Team', email = '[email protected]' },
{ name = "Tom Ghyselinck", email = "[email protected]" },
]
requires-python = ">=3.4"
dependencies = [
'future',
'Jinja2', # for templates
]
keywords = [
'python',
'ipython',
'highcharts',
'chart',
'visualization',
'graph',
'javascript',
'html',
]
classifiers = [
# See also https://pypi.org/classifiers/
'Framework :: IPython',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Science/Research',
#
# ! XXX - Also keep ``project.license`` in sync!
#
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
]
[project.license]
#
# ! XXX - Also keep ``project.classifiers`` ('License :: OSI Approved :: ') in sync!
#
file = "LICENSE"
[project.urls]
Homepage = "https://github.com/excentis/python-highcharts"
[tool.setuptools.package-data]
"highcharts_excentis.highcharts" = ["templates/*.html"]
"highcharts_excentis.highmaps" = ["templates/*.html"]
"highcharts_excentis.highstock" = ["templates/*.html"]
[tool.setuptools.dynamic]
version = { attr = "highcharts_excentis.version.__version__" }