Skip to content

Commit

Permalink
validate-pyproject pyproject.toml && pyproject-fmt pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Dec 18, 2024
1 parent 469957a commit 3545520
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 30 deletions.
5 changes: 3 additions & 2 deletions poetry.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
virtualenvs.in-project=true
virtualenvs.create = true
# See https://github.com/abatilo/actions-poetry to understand this file.
virtualenvs.create = true
virtualenvs.in-project = true
56 changes: 28 additions & 28 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
[build-system]
build-backend = "poetry.core.masonry.api"
requires = [ "poetry-core>=1" ]

[tool.poetry]
name = "montydb"
version = "99.dev.0"
description = "Monty, Mongo tinified. MongoDB implemented in Python !"
authors = ["davidlatwe <davidlatwe@gmail.com>"]
authors = [ "davidlatwe <davidlatwe@gmail.com>" ]
license = "BSD-3-Clause License"
readme = "README.md"
repository = "https://github.com/davidlatwe/montydb"
keywords = ["monty", "montydb", "pymongo", "mongodb", "database", "embedded"]
keywords = [ "monty", "montydb", "pymongo", "mongodb", "database", "embedded" ]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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",
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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",
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
]

include=[
"LICENSE",
include = [
"LICENSE",
]

[tool.poetry.dependencies]
python = ">=3.7"

[tool.poetry.dev-dependencies]
toml = "*"
pytest = "*"
pytest-cov = "*"
pymongo = "=3.11.3"
bandit = "^1"
black = { version = "*", python = ">=3.6.2", allow-prereleases = true }
codespell = "^2"
flake8 = "^5"
lmdb = { git = "https://github.com/Bye-lemon/py-lmdb.git", rev = "2141c16" }
mongoengine = "*"
flake8 = "^5"
codespell = "^2"
black = {version = "*", python =">=3.6.2", allow-prereleases = true}
bandit = "^1"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
pymongo = "=3.11.3"
pytest = "*"
pytest-cov = "*"
toml = "*"

0 comments on commit 3545520

Please sign in to comment.