-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
38 lines (34 loc) · 1.17 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
[tool.poetry]
name = "django-ulogin"
version = "1.1.1"
description = "User social authentication with ulogin.ru service"
readme = "README.rst"
authors = ["Mikhail Porokhovnichenko <[email protected]>"]
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP :: Session"
]
[tool.poetry.dependencies]
python = "^3.5 || ^3.6 || ^3.7 || ^3.8"
requests = "^2.24.0"
[tool.poetry.dev-dependencies]
bump2version = "^1.0.0"
flake8 = "^3.8.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"