-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (37 loc) · 1 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
[build-system]
requires = [
"setuptools >= 65",
"wheel >= 0.38",
]
build-backend = "setuptools.build_meta"
[project]
name = "mongomotor"
dynamic = ["version"]
authors = [
{ name="Juca Crispim" },
]
description = "MongoMotor: An async document-object mapper for MongoDB"
readme = "README.md"
dependencies = [
'mongoengine>=0.27.0',
'motor>=3.1.1',
'blinker>=1.5',
'pymongo>=4.3.3',
'asyncblink>=0.3.2',
]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
]
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*"]
include = ["mongomotor"]
[tool.setuptools.dynamic]
version = {attr = "mongomotor.__version__"}