Kumi
dbf7cde183
- Added standard project documentation including README.md - Added .gitignore for ignoring unnecessary files (.venv, *.pyc, etc.) - Implemented basic Django application structure with accounts and resolver apps - Configured Django settings, including two-factor auth and database setup - Set up Django admin and basic model structures for Prefixes, Suffixes, Identifiers, and Permissions - Added templates for accounts and resolver management - Configured initial migrations and custom user model - Included poetry dependencies and project setup configuration This commit sets up the fundamental structure of the FreeDOI project, enabling DOI-like identifier creation and resolution.
46 lines
1 KiB
TOML
46 lines
1 KiB
TOML
[tool.poetry]
|
|
name = "freedoi"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Private.coffee Team <support@private.coffee>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
homepage = "https://freedoi.org"
|
|
repository = "https://git.private.coffee/PrivateCoffee/freedoi"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
django = "^5.0"
|
|
djangorestframework = "*"
|
|
setuptools = "*"
|
|
pillow = "*"
|
|
pygments = "*"
|
|
coreapi = "*"
|
|
pyyaml = "*"
|
|
django-autosecretkey = "*"
|
|
django-celery-results = "*"
|
|
django-celery-beat = "*"
|
|
drf-spectacular = {extras = ["sidecar"], version = "*"}
|
|
argon2-cffi = "*"
|
|
django-csp = "*"
|
|
django-rest-polymorphic = "*"
|
|
django-crispy-forms = "*"
|
|
crispy-bootstrap5 = "*"
|
|
django-two-factor-auth = "*"
|
|
phonenumbers = "*"
|
|
|
|
[tool.poetry.group.mysql.dependencies]
|
|
mysqlclient = "*"
|
|
|
|
[tool.poetry.group.postgres.dependencies]
|
|
psycopg2 = "*"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^5.2"
|
|
|
|
[tool.poetry.scripts]
|
|
freedoi-manage = "freedoi.manage:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|