-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
85 lines (75 loc) · 2.14 KB
/
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
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
78
79
80
81
82
83
84
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "OraTAPI"
version = "1.4.29"
description = "Oracle Table API Generator Application"
authors = [ {name = "Clive Bostock"} ]
dependencies = [
"typing_extensions>=4.12.2",
"tomli>=2.2.1",
"setuptools-scm>=8.1.0",
"rich>=13.9.4",
"pyproject_hooks>=1.2.0",
"Pygments>=2.18.0",
"pycparser>=2.22",
"packaging>=24.2",
"oracledb>=2.5.0",
"mdurl>=0.1.2",
"markdown-it-py>=3.0.0",
"cryptography>=43.0.3",
"cffi>=1.17.1",
"bump2version>=1.0.1",
"build>=1.2.2.post1",
"requests>=2.32.3",
"urllib3==2.3.0",
"charset-normalizer>=3.4.1",
"configobj>=5.0.9",
"idna>=3.10"
]
# Useful if publishing through PyPI
keywords = [
"python",
"oracle",
"database",
"plsql",
"table api",
"stored procedures",
"views",
"database triggers",
"code generator",
"automation"
]
# Metadata
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Database",
"Topic :: Software Development :: Code Generators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
# Specify the package directory
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
"Repository" = "https://github.com/avalon60/OraTAPI"
# Include additional resources
[tool.setuptools.package-data]
"*" = [ "resources/config/.ini.sample",
"resources/templates/column_expressions/.tpt.sample",
"resources/templates/updates/.tpt.sample",
"resources/templates/misc/trigger/.tpt.sample",
"resources/templates/misc/view/.tpt.sample",
"resources/templates/packages/body/.tpt.sample",
"resources/templates/packages/procedures/.tpt.sample",
"resources/templates/packages/spec/.tpt.sample", ]
# Declare scripts as dynamic
dynamic = ["scripts"]
# Scripts defined under `[project.scripts]`
[project.scripts]
conn_mgr = "controller.conn_mgr:main"
ora_tapi = "controller.ora_tapi:main"
quick_config = "controller.quick_config:main"