-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpyproject.toml
59 lines (49 loc) · 1.44 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
[project]
name = "tails_server"
version = "1.1.0"
description = "Tails Server"
authors = [ { name = "Government of British Columbia", email = "[email protected]" } ]
license = { text = "Apache-2.0"}
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
# TODO: Upgrade this to the latest version once we no longer rely on indySDK
requires-python = ">=3.9"
dependencies = [
"aiohttp==3.10.5",
"base58~=2.1.1",
# temporary to fix transitive dependency issues
"multidict<5.0.0",
"yarl==1.11.1",
# indy_vdr
# Error loading library: indy_vdr specified version because it occurs when installing as pip3 install indy-vdr.
"indy_vdr==0.4.2"
]
[project.optional-dependencies]
# pip install -e .[dev]
dev = [
"rich~=13.8.1",
"pynacl~=1.5.0",
"aiofiles~=23.2.1",
"python3_indy~=1.16.0.post286",
"isort~=5.13.2",
"black~=24.2.0"
]
[project.urls]
Homepage = "https://github.com/bcgov/indy-tails-server"
[tool.pyright]
pythonVersion = "3.9"
[tool.setuptools]
packages = ["tails_server", "tails_server.config"]
include-package-data = true
[tool.setuptools.package-data]
"tails_server.config" = ["default_logging_config.ini"]
[project.scripts]
tails-server = "tails_server.__init__:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"