-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (46 loc) · 1.31 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = 'simple-mongodb'
version = '0.8.4'
description = " An asynchronous Python package for streamlined collection management in MongoDB "
requires-python = '>=3.12'
authors = []
license = { file = "LICENSE" }
readme = "README.md"
dependencies = ['motor==3.5.0', 'pymongo==4.8.0']
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3.12',
'Intended Audience :: Developers',
'Topic :: Database',
]
[project.urls]
Homepage = 'https://github.com/Gandori/Simple-MongoDB'
Documentation = 'https://github.com/Gandori/Simple-MongoDB'
Repository = 'https://github.com/Gandori/Simple-MongoDB'
Changelog = 'https://github.com/Gandori/Simple-MongoDB/blob/master/CHANGELOG.md'
[project.optional-dependencies]
dev = [
'isort==5.13.2',
'black==24.4.2',
'pytest==8.2.2',
'pytest-asyncio==0.23.7',
'fakeredis==2.23.2',
'pytest-mock==3.14.0',
'pytest-sugar==1.0.0',
'toml==0.10.2',
'setuptools==74.1.2',
'wheel==0.44.0',
'build==1.2.2',
'twine==5.1.1',
]
[tool.setuptools]
packages = ['simple_mongodb']
package-data = { 'simple_mongodb' = ['py.typed'] }
[tool.black]
line-length = 88
skip-string-normalization = true
[tool.isort]
profile = "black"