-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (48 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
56 lines (48 loc) · 1.39 KB
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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "archook"
dynamic = ["version"]
description = "Locates ArcPy and makes it available to the running Python distribution"
readme = "README.md"
license = "GPL-2.0-only"
license-files = ["LICENSE"]
requires-python = ">=3.10"
authors = [
{ name = "James Ramm" },
]
maintainers = [
{ name = "Matt Wilkie", email = "matt.wilkie@yukon.ca" },
]
keywords = ["ArcGIS", "arcpy"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
[project.urls]
Homepage = "https://github.com/JamesRamm/archook"
Repository = "https://github.com/JamesRamm/archook"
Issues = "https://github.com/JamesRamm/archook/issues"
Changelog = "https://github.com/JamesRamm/archook/blob/master/CHANGELOG.md"
[dependency-groups]
dev = [
"build>=1.2.2",
"pytest>=8.3.5",
"twine>=6.1.0",
]
[tool.setuptools.dynamic]
version = { file = ["archook/VERSION"] }
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
where = ["."]
include = ["archook"]
[tool.setuptools.package-data]
archook = ["VERSION"]
[tool.setuptools.exclude-package-data]
"*" = ["__pycache__/*"]