-
-
Notifications
You must be signed in to change notification settings - Fork 357
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 962 Bytes
/
pyproject.toml
File metadata and controls
34 lines (32 loc) · 962 Bytes
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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]
[project]
dynamic = ["version", "optional-dependencies"]
name = "djongo"
dependencies = [
'sqlparse==0.2.4',
'pymongo>=3.7.0,<=3.11.4',
'django>=2.1,<=3.1.12',
'pytz>=2018.5'
]
authors = [
{ name = "doableware", email = 'support@doableware.com' }
]
license= {text = "AGPL"}
keywords = ["Django", "Djongo", "MongoDB", "driver", "connector"]
requires-python = ">=3.6"
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
]
description = "Djongo: The Django MongoDB connector"
readme = "README.md"
[project.urls]
Homepage = "https://www.djongomapper.com/"
Documentation = "https://www.djongomapper.com/docs/"
Repository = "https://github.com/doableware/djongo.git"
[tool.setuptools.dynamic]
version = {attr = "djongo.__version__"}