-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 786 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 786 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
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
setup(
name='allauth-login-page',
version='0.1',
packages=['allauth-login-page'],
include_package_data=True,
license='MIT',
description='Django app that wraps allauth and provides nice login page',
long_description=README,
url='https://github.com/python-dirbtuves/allauth-login-page',
author='Python dirbtuves',
author_email='python-dirbtuves@googlegroups.com',
install_requires=[
'django',
'django-allauth',
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
)