-
Notifications
You must be signed in to change notification settings - Fork 70
/
pyproject.toml
99 lines (92 loc) · 2.79 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "django-polaris"
version = "2.5.0"
description = "An extendable Django server for Stellar Ecosystem Proposals."
license = "Apache-2.0"
authors = ["Stellar Development Foundation <[email protected]>"]
readme = "README.rst"
homepage = "https://github.com/stellar/django-polaris"
repository = "https://github.com/stellar/django-polaris"
documentation = "https://django-polaris.readthedocs.io/en/stable"
keywords = ["stellar", "anchor", "polaris", "sep", "server"]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
packages = [{ "include" = "polaris" }]
exclude = ["**/*.scss", "**/tests/*"]
[tool.poetry.urls]
"Release Notes" = "https://github.com/stellar/django-polaris/releases"
"Bug Tracker" = "https://github.com/stellar/django-polaris/issues"
[tool.poetry.dependencies]
python = "^3.8"
django = "^3.2"
asgiref = "^3.2"
django-environ = "*"
django-model-utils = "^4.1"
djangorestframework = "^3.12"
whitenoise = "^5.3"
stellar-sdk = { version = "^10.0.0", extras=["aiohttp"] }
aiohttp = "^3.7"
django-cors-headers = "^3.7"
toml = "*"
pyjwt = "^2.1"
cryptography = "^41.0"
sqlparse = "^0.4.2"
readthedocs-sphinx-ext = { version = "^2.1", optional = true }
sphinx = { version = "^4.2", optional = true }
sphinx-rtd-theme = { version = "^1.0", optional = true }
sphinx-autodoc-typehints = { version = "*", optional = true }
gunicorn = { version = "*", optional = true }
psycopg2-binary = { version = "^2.9", optional = true }
watchdog = { version = "^2", optional = true }
[tool.poetry.dev-dependencies]
pylint = "*"
pylint-django = "*"
pytest = "*"
pytest-django = "*"
pytest-asyncio = "*"
pytest-cov = "*"
codecov = "*"
libsass = "*"
build = "*"
black = "*"
[tool.poetry.extras]
dev-server = ["gunicorn", "psycopg2-binary", "watchdog"]
docs = [
"readthedocs-sphinx-ext",
"sphinx",
"sphinx-rtd-theme",
"sphinx-autodoc-typehints",
]
[tool.coverage.run]
source = ["polaris"]
omit = [
"**/admin.py",
"**/apps.py",
"**/migrations/*",
"**/settings.py",
"**/tests/*",
"**/urls.py",
"**/wsgi.py",
"**/collectstatic/*",
"**/manage.py",
"**/.venv/*",
"**/.local/*",
]
[tool.coverage.report]
exclude_lines = ["pragma: no cover", "raise NotImplementedError", "def __str__"]