pyproject.toml
1.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ['setuptools >= 61.0.0', 'wheel']
build-backend = 'setuptools.build_meta'
[tool.setuptools]
packages = ["opensipkd.tools"]
[tools.setuptools.packages.find]
include = ["opensipkd.*"]
[tool.mypy]
exclude = []
show_error_codes = true
#[[tool.mypy.overrides]]
#module = [
# "opensipkd.pbb.monitoring.*",
#]
[project]
name = "opensipkd-tools"
version = "0.0.3"
dependencies = [
"wheel",
"setuptools",
"pip",
"WebOb",
"certifi",
"pyramid",
"pyramid_rpc",
"venusian",
"translationstring",
"plaster",
"hupper",
"urllib3",
"idna",
"pytz",
"requests",
"pyreportjasper",
#"z3c.rml",
# "pikepdf",
"qrcode",
"papyrus",
"fdf",
"pypdf"
]
requires-python = ">=3.8"
authors = [
{ name = "Agus Gustiana", email = "aa.gustiana@gmail.com" },
{ email = "opensipkd@gmail.com" },]
maintainers = [
{ name = "Ari", email = "ariagungprasetiyo@gmail.com" }]
description = "PBB Monitoring Kabupaten/Kota"
readme = "README.rst"
license = { file = "LICENSE" }
keywords = ["pjdl", "pajak daerah", "pendapatan", "egov", "pendapatan daerah"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"]
[project.optional-dependencies]
dev = [
'pyramid_debugtoolbar',
'pytest',]
[project.urls]
Homepage = "https://demo.opensipkd.com/pjdl"
#Documentation = "https://readthedocs.org"
Repository = "https://git.opensipkd.com/aa.gusti/pbb-monitoring"
"Bug Tracker" = "https://git.opensipkd.com/aa.gusti/pbb-monitoring/issues"
Changelog = "https://git.opensipkd.com/aa.gusti/pjdl-apps/blob/master/CHANGELOG.md"
# [project.scripts]
# initialize_pbb_monitoring_db = "opensipkd.pbb.monitoring.scripts.initializedb:main"