-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
50 lines (41 loc) · 1.54 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
43
44
45
46
47
48
49
50
import os
from setuptools import setup, find_packages
VERSION = '0.6.2'
def read(fname):
""" Returns the contents of the fname file """
with open(os.path.join(os.path.dirname(__file__), fname), 'r') as file:
return file.read()
# Available classifiers: https://pypi.org/pypi?%3Aaction=list_classifiers
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Office/Business :: Office Suites',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent',
]
requires = ['Flask']
setup(
name='flask-session-plus',
version=VERSION,
packages=find_packages(),
url='https://github.com/janscas/flask-session-plus',
license='Mit License',
author='Alejcas',
author_email='alejcas@users.noreply.github.com',
maintainer='Alejcas',
maintainer_email='alejcas@users.noreply.github.com',
description='Flask Multiple Sessions Interface (combine multiple sessions with different backends)',
long_description=read('README.md'),
long_description_content_type="text/markdown",
classifiers=CLASSIFIERS,
python_requires=">=3.4",
install_requires=requires,
)