-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.17 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import find_packages, setup
import os
basedir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(basedir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="Flask-Paseto",
packages=find_packages(),
version="0.0.5",
include_package_data=True,
description="Paseto integration for flask",
author="Akerele Abraham",
license="MIT",
setup_requires=[
"pytest-runner",
"flask",
"paseto>=0.0.5",
"pysodium>=0.7.5"
],
tests_require=["pytest"],
package_data={"": ["*"]},
test_suite="tests",
url="https://github.com/haibeey/FLASK-PASETO",
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
"flask",
"paseto>=0.0.5",
"pysodium>=0.7.5"
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)