blob: 2ea9080c6791fc4dfd7a9b7bf7528d50b846ca98 (
plain)
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
|
[build-system]
requires = [ "hatchling" ]
build-backend = "hatchling.build"
[project]
name = "palhm"
version = "0.0.3"
authors = [
{ name="David Timber", email="dxdt@dev.snart.me" },
]
description = "PALHM"
readme = "README.md"
requires-python = ">= 3.9"
dependencies = [ "pyjson5" ]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
aws = [ "awscli", "boto3" ]
[project.urls]
Homepage = "https://github.com/dxdxdt/PALHM/"
Issues = "https://github.com/dxdxdt/PALHM/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = [ "src" ]
[tool.setuptools.package-data]
sample-conf = [
"conf/py-sample/conf.d/*",
"conf/py-sample/sample.jsonc",
"conf/crontab",
"conf/palhm-boot-report.service" ]
|