forked from Yexiaoxing/python-social-yourmembership
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (36 loc) · 1016 Bytes
/
setup.py
File metadata and controls
44 lines (36 loc) · 1016 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import re
import sys
try:
import setuptools
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
# Requirements
REQUIRES = [
"Django>=1.8",
"Django<1.10",
"python-social-auth>=0.2.3",
]
setup(
name="python-social-yourmembership",
version="0.0.2",
description="A plugin of YourMembership SSO, with python-social-auth",
author='Xiaoxing Ye',
author_email='ye@xiaoxing.us',
url="https://gitlab.com/mailman/hyperkitty",
license="GPLv3",
classifiers=[
"Framework :: Django",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 2",
],
keywords='email',
#packages=find_packages(exclude=["*.test", "test", "*.test.*"]),
packages=find_packages(),
include_package_data=True,
install_requires=REQUIRES,
)