-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
36 lines (30 loc) · 955 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "eol_scons"
version = "4.3.dev1"
requires-python = ">= 3.6"
description = "SCons extensions"
readme = "README.md"
license = {text = "MIT License"}
authors = [
{name = "Gary Granger", email = "[email protected]"},
{name = "EOL", email = "[email protected]"}
]
dependencies = [
"scons>4.0",
]
[project.urls]
Readme = "https://github.com/NCAR/eol_scons/blob/master/README.md"
Homepage = "https://github.com/NCAR/eol_scons"
Repository = "https://github.com/NCAR/eol_scons"
Changelog = "https://github.com/NCAR/eol_scons/blob/master/CHANGELOG.md"
[tool.setuptools]
# this is the default, but make it explicit to get the template files
include-package-data = true
[tool.setuptools.package-dir]
eol_scons = "."
# "eol_scons.eol_scons" = "eol_scons"
[tool.setuptools.package-data]
eol_scons = ['scripts/build_rpm.sh', 'eol_scons/tools/pylintrc']