Kumi
3b8a578cc8
Added an MIT license to establish the project's open source nature. Initialized a README file for project documentation. Reorganized project directory by moving manage.py to a 'coffeemachine' subdirectory. Set up `pyproject.toml` using Poetry with necessary dependencies for the project environment, including Django and associated libraries for various functionalities (e.g., REST framework, storage, and authentication). This setup provides a structured foundation for further development.
49 lines
1 KiB
TOML
49 lines
1 KiB
TOML
[tool.poetry]
|
|
name = "coffeemachine"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Private.coffee Team <support@private.coffee>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://git.private.coffee/PrivateCoffee/coffeemachine"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
django = "^5.0"
|
|
djangorestframework = "*"
|
|
django-storages = "*"
|
|
django-polymorphic = "*"
|
|
setuptools = "*"
|
|
pillow = "*"
|
|
pygments = "*"
|
|
markdown = "*"
|
|
coreapi = "*"
|
|
pyyaml = "*"
|
|
django-autosecretkey = "*"
|
|
celery = "*"
|
|
redis = "*"
|
|
django-celery-results = "*"
|
|
django-celery-beat = "*"
|
|
drf-spectacular = {extras = ["sidecar"], version = "*"}
|
|
boto3 = "*"
|
|
argon2-cffi = "*"
|
|
django-csp = "*"
|
|
django-rest-polymorphic = "*"
|
|
django-crispy-forms = "*"
|
|
crispy-bootstrap5 = "*"
|
|
|
|
[tool.poetry.group.mysql.dependencies]
|
|
mysqlclient = "*"
|
|
|
|
[tool.poetry.group.postgres.dependencies]
|
|
psycopg2 = "*"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^5.2"
|
|
|
|
[tool.poetry.scripts]
|
|
coffeemachine = "coffeemachine.manage:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|