-
Notifications
You must be signed in to change notification settings - Fork 224
/
Pipfile
40 lines (32 loc) · 1.06 KB
/
Pipfile
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
django = ">=4.2"
django-treebeard = ">=4.5.1"
ofxtools = ">=0.9.5"
markdown = ">=3.4.1"
faker = ">=15.3.3"
pillow = ">=9.3.0"
[graphql]
django-filter = ">=2.1.0"
graphene = ">=3.2.1"
graphene_django = ">=3.0.0"
django-oauth-toolkit = ">=2.2.0"
[pdf]
fpdf2 = ">=2.7.4"
[dev-packages]
sphinx = "*"
behave = "*"
twine = "*"
jupyterlab = "*"
pandas = "*"
numpy = "*"
[requires]
python_version = "3.12"
[scripts]
publish-package-test = "twine upload --repository testpypi -u __token__ -p ${DJL_PYPI_TEST_TOKEN} dist/*"
publish-package = "twine upload -u __token__ -p ${DJL_PYPI_TOKEN} dist/*"
generate-graphql-schema = "python manage.py graphql_schema --schema django_ledger.contrib.django_ledger_graphene.api.schema --out django_ledger/contrib/django_ledger_graphene/schema.graphql --indent 2"
generate-graphql-introspection = "python manage.py graphql_schema --schema django_ledger.contrib.django_ledger_graphene.api.schema --out django_ledger/contrib/django_ledger_graphene/schema.json --indent 2"