forked from cjgdev/QCustomPlot2-PyQt5
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
77 lines (75 loc) · 2.11 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
# Specify the build system.
[build-system]
requires = ['sip >=5.0.0, <7', 'PyQt-builder >=1.6, <2', 'PyQt5'] # change to PyQt6 if necessary
build-backend = 'sipbuild.api'
# Specify the PEP 621 metadata for the project.
[project]
name = 'QCustomPlot_PyQt5' # change to PyQt6 if necessary
version = '2.1.1.2'
description = 'QCustomPlot is a Qt widget for plotting and data visualization'
readme = 'README.md'
urls.homepage = 'https://github.com/salsergey/QCustomPlot-PyQt'
requires-python = '>=3.7'
license = {text = 'MIT'}
keywords = ['PyQt', 'QCustomPlot', 'GUI']
authors = [
{email = 'salsergey@gmail.com'},
{name = 'Sergey Salnikov'}
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development :: User Interfaces'
]
dependencies = [
'PyQt5' # change to PyQt6 if necessary
]
[tool.sip.project]
sip-files-dir = 'sip'
sdist-excludes = [
'.*',
'.*/*',
'.*/*/*',
'.*/.*',
'.git/*',
'.git/*/*',
'.git/*/*/*',
'.git/*/*/*/*',
'.git/*/*/*/*/*',
'.git/*/*/*/*/*/*',
'.git/*/*/*/*/*/*/*',
'*/.*',
'*/*/.*',
'*/*/*/.*',
'*/*/*/*/.*',
'QCustomPlot/*',
'QCustomPlot/*/*',
'QCustomPlot/*/*/*',
'QCustomPlot/*/*/*/*',
'QCustomPlot/*/*/*/*/*',
'build*/*',
'build*/*/*',
'build*/*/*/*',
'build*/*/*/*/*',
'build*/*/*/*/*/*',
'build*/*/*/*/*/*/*',
'build*/*/*/*/*/*/*/*',
'build*/*/*/*/*/*/*/*/*',
'build*/*/*/*/*/*/*/*/*/*',
'build*/*/*/*/*/*/*/*/*/*/*',
'build*/*/*/*/*/*/*/*/*/*/*/*',
'build*/*/*/*/*/*/*/*/*/*/*/*/*',
'dist/*',
'dist/*/*'
]