-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
57 lines (54 loc) · 2.76 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
[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
"lxml==5.2.1", # For django-allauth
"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
"toml",
]
[tool.setuptools]
packages = ["django_mongodb_cli"]
[tool.django_mongodb_cli]
dev = [
"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]/aclark4life/django-filter@main # upstream: carltongibson",
"django-mongodb-app @ git+ssh://[email protected]/aclark4life/[email protected] # upstream: mongodb-labs",
"django-mongodb-backend @ git+ssh://[email protected]/aclark4life/django-mongodb-backend@main # upstream: mongodb",
"django-mongodb-extensions @ git+ssh://[email protected]/aclark4life/django-mongodb-extensions@main",
"django-mongodb-project @ git+ssh://[email protected]/aclark4life/[email protected] # upstream: mongodb-labs",
"django-mongodb-templates @ git+ssh://[email protected]/aclark4life/django-mongodb-templates@main",
"django-rest-framework @ git+ssh://[email protected]/encode/django-rest-framework@main",
"django @ git+ssh://[email protected]/mongodb-forks/[email protected]",
"docs @ git+ssh://[email protected]/mongodb/docs@master",
"flask-pymongo @ git+ssh://[email protected]/mongodb-labs/flask-pymongo",
"DublinCityCenterPubFinder @ git+ssh://[email protected]/anaiyaraisin/DublinCityCenterPubFinder",
"langchain-mongodb @ git+ssh://[email protected]/langchain-ai/langchain-mongodb@main",
"mongo-python-driver @ git+ssh://[email protected]/aclark4life/mongo-python-driver@master # upstream: mongodb",
"wagtail-mongodb-project @ git+ssh://[email protected]/aclark4life/wagtail-mongodb-project@main",
"wagtail @ git+ssh://[email protected]/aclark4life/wagtail@main # upstream: mongodb-forks",
"xmlsec @ git+ssh://[email protected]/xmlsec/python-xmlsec@main",
]
[project.scripts]
dm = "django_mongodb_cli:cli"