-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (48 loc) · 1.86 KB
/
setup.py
File metadata and controls
50 lines (48 loc) · 1.86 KB
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
from setuptools import setup, find_packages
version = __import__("allauth_theme").__version__
setup(
name='django-allauth-theme',
version=version,
author='Leonardo Di Lella',
author_email='leonardo.dilella@mobileapart.com',
packages=find_packages(),
keywords="django auth account social openid twitter facebook oauth registration theme tailwindcss",
url='http://pypi.python.org/pypi/django-allauth-theme/',
license='LICENSE',
description='An awesome and responsive django-allauth theme based on tailwind',
long_description_content_type="text/markdown",
long_description=open('README.md').read(),
install_requires=[
"Django >= 2.0",
"django-allauth >= 0.51.0",
"django-crispy-forms >= 1.14.0"
],
python_requires=">=3.5",
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment",
"Topic :: Internet",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Framework :: Django",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
]
)