-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (32 loc) · 1.03 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
[tool.poetry]
name = "pymnesia"
version = "1.0.0-beta.2"
description = "A (real) in memory database and ORM"
authors = ["Harold Cohen <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/haroldcohen/pymnesia"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Testing",
]
[tool.poetry.urls]
Homepage = "https://github.com/haroldcohen/pymnesia"
Repository = "https://github.com/haroldcohen/pymnesia.git"
Issues = "https://github.com/haroldcohen/pymnesia/issues"
Changelog = "https://github.com/haroldcohen/pymnesia/blob/master/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.10.6"
[tool.poetry.group.dev.dependencies]
pylint = "^3.0.2"
pytest = "^7.4.2"
pre-commit = "^3.5.0"
autopep8 = "^2.0.4"
PyHamcrest = "^2.1.0"
pytest-mock = "^3.12.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"