-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.72 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]
[options]
zip_safe = false
[project]
authors = [
{name = "Matias Aguirre", email = "[email protected]"},
{name = "Lee Ji-ho", email = "[email protected]"}
]
classifiers = [
'Development Status :: 4 - Beta',
'Topic :: Internet',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
]
dependencies = [
"six",
"social-auth-core>=1.0.0",
"social-auth-storage-sqlalchemy>=1.0.0"
]
description = 'Python Social Authentication, Tornado integration.'
dynamic = ["version"]
keywords = ["tornado", "sqlalchemy", "social auth"]
license = {text = 'BSD'}
name = 'social-auth-app-tornado'
readme = "README.md"
requires-python = ">= 3.7"
[project.urls]
Changelog = 'https://github.com/python-social-auth/social-app-tornado/blob/master/CHANGELOG.md'
Documentation = 'http://python-social-auth.readthedocs.org'
Issues = 'https://github.com/python-social-auth/social-app-tornado/issues'
Repository = 'https://github.com/python-social-auth/social-app-tornado'
[tool.flake8]
# Ignore some well known paths
exclude = ['.venv', '.tox', 'dist', 'doc', 'build', '*.egg', 'db/env.py', 'db/versions/*.py', 'site', 'Pipfile', 'Pipfile.lock']
max-line-length = 79
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "social_tornado.__version__"}
[tool.setuptools.packages]
find = {}