-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (37 loc) · 1.26 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
[tool.poetry]
name = "hashstore"
version = "1.1.0"
description = "HashStore, an object storage system using content identifiers."
authors = ["Dou Mok <[email protected]>", "Matt Jones <[email protected]>",
"Matthew Brooke", "Jing Tao", "Jeanette Clark", "Ian M. Nesbitt"]
readme = "README.md"
keywords = ["filesystem", "object storage", "hashstore", "storage"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Filesystems"
]
[tool.poetry.dependencies]
python = ">=3.9"
pathlib = ">=1.0.1"
pyyaml = ">=6.0"
[tool.poetry_bumpversion.file."src/hashstore/__init__.py"]
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2.0"
black = ">=22.10.0"
pylint = ">=2.17.4"
pg8000 = ">=1.29.8"
[tool.poetry.scripts]
hashstore = "hashstore.hashstoreclient:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"