-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
84 lines (76 loc) · 2.08 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>=67.7.0"]
build-backend = "setuptools.build_meta"
[project]
name = "aioipfs"
dynamic = ["version"]
authors = [{name = "cipres", email = "[email protected]"}]
license = {text = "LGPLv3"}
description = "Asynchronous IPFS client library"
keywords = ["asyncio", "aiohttp", "ipfs"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Topic :: System :: Filesystems",
"Topic :: Communications :: File Sharing",
]
urls = {Homepage = "https://gitlab.com/cipres/aioipfs"}
dependencies = [
"aiohttp>=3.7.4",
"aiofiles>=0.7.0",
"async-timeout>=4.0.3",
"base58>=1.0.2",
"gitignore-parser==0.1.9",
"multiaddr>=0.0.9",
"py-multibase>=1.0.3",
"py-multiformats-cid>=0.4.3",
"setuptools>=67.7.0",
]
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.optional-dependencies]
orjson = ["orjson>=3.0"]
car = ["ipfs-car-decoder==0.1.1"]
dev = [
"mypy",
"pytest",
"pytest-asyncio",
"pytest-cov",
"ruff",
"tox",
"wheel",
]
docs = [
"sphinx==5.3.0",
"sphinxcontrib-asyncio",
"sphinxcontrib-video",
"guzzle_sphinx_theme"
]
bohort = [
"appdirs>=1.4.4",
"omegaconf==2.3.0",
"ptpython-aioipfs>=3.0.27"
]
[tool.setuptools.dynamic]
version = {attr = "aioipfs.__version__"}
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
exclude = ["tests"]
namespaces = false
[tool.setuptools.package-data]
"aioipfs.scripts.bohort" = ["*.yaml"]
[project.scripts]
bohort = "aioipfs.scripts.bohort:run_bohort"