forked from mongodb-labs/django-mongodb-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (59 loc) · 3.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[project]
name = "django-mongodb-cli"
version = "0.1.0"
dependencies = [
"GitPython", # For git integration
"Sphinx", # For django-mongodb-backend documentation
"black",
"click",
"django-extensions", # <3 django-extensions
"django-debug-toolbar",
"django-ninja", # For django-allauth
"dj-database-url", # For startproject and testing with postgres
"fido2", # For django-allauth
"html5lib", # Required by django-debug-toolbar
"psycopg2", # For django-allauth
"python3-openid", # For django-allauth
"python3-saml", # For django-allauth
"pyjwt[crypto]", # For django-allauth
"pytest",
"pytest-html",
"pytest-django", # For django-rest-framework and django-debug-toolbar
"python-webpack-boilerplate", # For startproject
"pytz", # For django-filter
"requests-oauthlib", # For django-allauth
"rich",
"setuptools", # For django-rest-framework
"sphinx-autobuild", # For django-mongodb-backend documentation
"sphinx-copybutton", # For django-mongodb-backend documentation
"toml",
]
[tool.setuptools]
packages = ["django_mongodb_cli"]
[tool.django_mongodb_cli]
dev = [
"DublinCityCenterPubFinder @ git+ssh://[email protected]/anaiyaraisin/DublinCityCenterPubFinder",
"django @ git+ssh://[email protected]/mongodb-forks/[email protected]",
"django-allauth @ git+ssh://[email protected]/pennersr/django-allauth@main",
"django-debug-toolbar @ git+ssh://[email protected]/django-commons/django-debug-toolbar@main",
"django-filter @ git+ssh://[email protected]/carltongibson/django-filter@main",
"django-mongodb-app @ git+ssh://[email protected]/mongodb-labs/[email protected]",
"django-mongodb-backend @ git+ssh://[email protected]/mongodb/django-mongodb-backend@main",
"django-mongodb-extensions @ git+ssh://[email protected]/mongodb-labs/django-mongodb-extensions@main",
"django-mongodb-project @ git+ssh://[email protected]/mongodb-labs/[email protected]",
"django-mongodb-templates @ git+ssh://[email protected]/aclark4life/django-mongodb-templates@main",
"django-rest-framework @ git+ssh://[email protected]/encode/django-rest-framework@main",
"docs @ git+ssh://[email protected]/mongodb/docs@master",
"flask-pymongo @ git+ssh://[email protected]/mongodb-labs/flask-pymongo",
"langchain-mongodb @ git+ssh://[email protected]/langchain-ai/langchain-mongodb@main",
"libmongocrypt @ git+ssh://[email protected]/mongodb-labs/libmongocrypt@main",
"mongo-python-driver @ git+ssh://[email protected]/mongodb/mongo-python-driver@master",
"pymongo-auth-aws @ git+ssh://[email protected]/mongodb/pymongo-auth-aws@main",
"specifications @ git+ssh://[email protected]/mongodb/specifications@master",
"wagtail @ git+ssh://[email protected]/mongodb-forks/wagtail@main",
"wagtail-mongodb-project @ git+ssh://[email protected]/mongodb-labs/wagtail-mongodb-project@main",
"winkerberos @ git+ssh://[email protected]/mongodb-labs/winkerberos@main",
"xmlsec @ git+ssh://[email protected]/xmlsec/python-xmlsec@main",
]
[project.scripts]
dm = "django_mongodb_cli:cli"