-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.4 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
[project]
name = 'flask-session-cookie-manager'
version = '1.2.2'
authors = [
{ name='Wilson Sumanang' },
{ name='Alexandre ZANNI', email='[email protected]' },
]
maintainers= [
{ name='Alexandre ZANNI', email='[email protected]' },
]
description = 'Flask Session Cookie Decoder/Encoder'
readme = 'README.md'
license = {file = 'LICENSE'}
classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: Security',
'Topic :: Utilities',
'Environment :: Console',
'Intended Audience :: Other Audience',
]
keywords = ['Flask', 'session', 'cookie', 'decoder', 'encoder']
dependencies = [
'itsdangerous',
'Flask'
]
[project.urls]
Homepage = 'https://noraj.github.io/flask-session-cookie-manager/'
Issues = 'https://github.com/noraj/flask-session-cookie-manager/issues'
Repository = 'https://github.com/noraj/flask-session-cookie-manager'
[project.scripts]
flask-session-cookie-manager2 = 'flask_session_cookie_manager2:main'
flask-session-cookie-manager3 = 'flask_session_cookie_manager3:main'
[build-system]
requires = ['hatchling']
build-backend = 'hatchling.build'
#[tool.hatch.build.targets.sdist]
#only-include = ['flask_session_cookie_manager*.py']
[tool.hatch.build.targets.wheel]
packages = ['flask_session_cookie_manager*.py']