Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit c838629

Browse files
committed
Use pyproject.toml instead of Pipfile
Closes #2
1 parent 0184f17 commit c838629

File tree

5 files changed

+169
-78
lines changed

5 files changed

+169
-78
lines changed

Pipfile

Lines changed: 0 additions & 8 deletions
This file was deleted.

Pipfile.lock

Lines changed: 0 additions & 67 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ cd simple-django-login-and-register-dynamic-lang
4646
### Install dependencies & activate virtualenv
4747

4848
```bash
49-
pip install pipenv
49+
pip install poetry
5050

51-
pipenv install
52-
pipenv shell
51+
poetry install
52+
poetry shell
5353
```
5454

5555
### Configure the settings (connection to the database, connection to an SMTP server, and other options)

poetry.lock

Lines changed: 143 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[tool.poetry]
2+
name = "simple-django-login-and-register-dynamic-lang"
3+
version = "3.6"
4+
description = "An example of Django project with basic user functionality."
5+
readme = "README.md"
6+
authors = ["Yehor Smoliakov <[email protected]>"]
7+
repository = "https://github.com/egorsmkv/simple-django-login-and-register-dynamic-lang"
8+
license = "BSD-3-Clause"
9+
classifiers = [
10+
"Intended Audience :: Developers",
11+
"License :: OSI Approved :: BSD License",
12+
"Programming Language :: Python",
13+
'Programming Language :: Python :: 3',
14+
]
15+
16+
[tool.poetry.dependencies]
17+
python = ">=3.8"
18+
Django = "==4.1.5"
19+
django-bootstrap4 = "==22.3"
20+
21+
[build-system]
22+
requires = ["poetry>=0.12"]
23+
build-backend = "poetry.masonry.api"

0 commit comments

Comments
 (0)