-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (67 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
73 lines (67 loc) · 2.03 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
[project]
name = "bag"
version = "5.0.2.dev1"
description = "A library for several purposes"
authors = [{ name = "Nando Florestan", email = "nandoflorestan@gmail.com" }]
requires-python = ">= 3.11"
readme = "README.rst"
license = "MIT"
keywords = [
"python",
"pyramid",
"sqlalchemy",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Framework :: Pyramid",
"Topic :: Database",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: General",
"Typing :: Typed",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"polib",
"argh",
]
[project.urls]
Repository = "https://github.com/nandoflorestan/bag"
Documentation = "http://docs.nando.audio/bag/latest/"
[project.scripts]
po2json = "bag.web.transecma:po2json_command"
reorder_po = "bag.reorder_po:_command"
check_rst = "bag.check_rst:command"
delete_old_branches = "bag.git.delete_old_branches:_command"
replace_many = "bag.replace_many:_command"
[project.entry-points."babel.extractors"]
jquery_templates = "bag.web.transecma:extract_jquery_templates"
[dependency-groups]
dev = [
"babel",
"pyramid",
"pytest",
"pytz",
"SQLAlchemy",
"sphinx",
"sphinx-autodoc-typehints",
]
[tool.uv.build-backend]
module-root = ""
[build-system]
requires = ["uv_build>=0.9.30,<0.10.0"]
build-backend = "uv_build"