-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (52 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
]
[project]
name = "ignition-api-stubs"
version = "8.1.47"
description = "Ignition Scripting API Stubs"
readme = "README.md"
keywords = [
"hmi",
"ignition",
"inductive automation",
"scada",
]
license = { file = "LICENSE" }
authors = [ { name = "César Román", email = "[email protected]" } ]
requires-python = ">=3.7,<3.13"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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",
"Typing :: Stubs Only",
"Typing :: Typed",
]
dependencies = [
"mypy[python2]==0.971",
"types-enum34",
]
urls.Funding = "https://github.com/sponsors/cesarcoatl"
urls.Homepage = "https://ignition-devs.github.io/ignition-api-8.1-stubs/"
urls.Source = "https://github.com/ignition-devs/ignition-api-8.1-stubs"
urls.Tracker = "https://github.com/ignition-devs/ignition-api-8.1-stubs/issues"
[tool.setuptools]
include-package-data = true
package-dir = { "" = "stubs" }
[tool.setuptools.package-data]
"*" = [ "*.pyi", "py.typed" ]