-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
29 lines (28 loc) · 1.03 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
#! /usr/bin/env python
from setuptools import setup, find_packages
from io import open
import versioneer
setup(
name='flask_basic_roles',
packages=find_packages(exclude=["tests"]),
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='A plugin for adding very simple users + roles to a '
'flask app',
author='Dillon Dixon',
author_email='[email protected]',
url='https://github.com/ownaginatious/flask-basic-roles',
license='MIT',
keywords=['flask', 'python', 'authentication', 'authorization'],
classifiers=[
'Framework :: Flask',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
install_requires=[line.strip()
for line in open("requirements.txt", "r",
encoding="utf-8").readlines()],
)