-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (31 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
"""Setup file for easy installation"""
from os.path import dirname, join
from setuptools import setup
def long_description():
return open(join(dirname(__file__), "README.md")).read()
def load_requirements():
return open(join(dirname(__file__), "requirements.txt")).readlines()
setup(
name="social-auth-app-flask-peewee",
version=__import__("social_flask_peewee").__version__,
author="Matias Aguirre",
author_email="matiasaguirre@gmail.com",
description="Python Social Authentication, peewee Flask models integration.",
license="BSD",
keywords="flask, peewee, social auth",
url="https://github.com/python-social-auth/social-app-flask-peewee",
packages=["social_flask_peewee"],
long_description=long_description(),
install_requires=load_requirements(),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Internet",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Environment :: Web Environment",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
zip_safe=False,
)