-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 989 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 989 Bytes
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
[project]
name = "intersystems-pyprod"
version = "0.1.1"
description = "Pure Python Interoperability Productions using InterSystems IRIS"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name="Geet Kalra", email="geet.kalra@intersystems.com" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
]
license = "MIT"
license-files = ["LICENSE.txt"]
[project.scripts]
intersystems_pyprod = "intersystems_pyprod._parser:main"
[project.urls]
Homepage = "https://github.com/intersystems/pyprod"
Source = "https://github.com/intersystems/pyprod"
Issues = "https://github.com/intersystems/pyprod/issues"
Documentation = "https://github.com/intersystems/pyprod#readme"
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"