-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (23 loc) · 802 Bytes
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup
tests_require = ['pytest']
setup(
name='werkzeug-encryptedcookie',
version='4.0',
url='https://github.com/homm/werkzeug-encryptedcookie',
author='Alexander Karpinsky',
author_email='[email protected]',
description='Werkzeug encrypted cookie',
packages=['werkzeug_encryptedcookie'],
platforms='any',
install_requires=['pycryptodome', 'secure-cookie', 'brotli'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
tests_require=tests_require,
test_suite='test',
)