|
1 |
| -#!/usr/bin/env python |
2 |
| -from __future__ import print_function |
| 1 | +from setuptools import setup |
3 | 2 |
|
4 |
| -import io |
5 |
| - |
6 |
| -from setuptools import find_packages, setup |
7 |
| - |
8 |
| -long_description = io.open("README.rst", encoding="utf-8").read() |
9 |
| - |
10 |
| -# Dynamically calculate the version based on allauth.VERSION. |
11 |
| -version = __import__("allauth").__version__ |
12 |
| - |
13 |
| -METADATA = dict( |
14 |
| - name="django-allauth", |
15 |
| - version=version, |
16 |
| - author="Raymond Penners", |
17 |
| - |
18 |
| - description="Integrated set of Django applications addressing" |
19 |
| - " authentication, registration, account management as well as" |
20 |
| - " 3rd party (social) account authentication.", |
21 |
| - long_description=long_description, |
22 |
| - url="http://www.intenct.nl/projects/django-allauth/", |
23 |
| - keywords="django auth account social openid twitter facebook oauth registration", |
24 |
| - project_urls={ |
25 |
| - "Documentation": "https://django-allauth.readthedocs.io/en/latest/", |
26 |
| - "Changelog": "https://github.com/pennersr/django-allauth/blob/main/ChangeLog.rst", |
27 |
| - "Source": "http://github.com/pennersr/django-allauth", |
28 |
| - "Tracker": "https://github.com/pennersr/django-allauth/issues", |
29 |
| - "Donate": "https://github.com/sponsors/pennersr", |
30 |
| - }, |
31 |
| - tests_require=[ |
32 |
| - "Pillow >= 9.0", |
33 |
| - ], |
34 |
| - install_requires=[ |
35 |
| - "Django >= 3.0", |
36 |
| - "python3-openid >= 3.0.8", |
37 |
| - "requests-oauthlib >= 0.3.0", |
38 |
| - "requests", |
39 |
| - "pyjwt[crypto] >= 1.7", |
40 |
| - ], |
41 |
| - python_requires=">=3.7", |
42 |
| - include_package_data=True, |
43 |
| - classifiers=[ |
44 |
| - "Development Status :: 5 - Production/Stable", |
45 |
| - "Intended Audience :: Developers", |
46 |
| - "Topic :: Software Development :: Libraries :: Python Modules", |
47 |
| - "Environment :: Web Environment", |
48 |
| - "Topic :: Internet", |
49 |
| - "License :: OSI Approved :: MIT License", |
50 |
| - "Operating System :: OS Independent", |
51 |
| - "Programming Language :: Python", |
52 |
| - "Programming Language :: Python :: 3", |
53 |
| - "Programming Language :: Python :: 3.7", |
54 |
| - "Programming Language :: Python :: 3.8", |
55 |
| - "Programming Language :: Python :: 3.9", |
56 |
| - "Programming Language :: Python :: 3.10", |
57 |
| - "Programming Language :: Python :: 3.11", |
58 |
| - "Framework :: Django", |
59 |
| - "Framework :: Django :: 3.1", |
60 |
| - "Framework :: Django :: 3.2", |
61 |
| - "Framework :: Django :: 4.0", |
62 |
| - "Framework :: Django :: 4.1", |
63 |
| - "Framework :: Django :: 4.2", |
64 |
| - ], |
65 |
| - packages=find_packages(exclude=["example"]), |
66 |
| -) |
67 | 3 |
|
68 | 4 | if __name__ == "__main__":
|
69 |
| - setup(**METADATA) |
| 5 | + setup() |
0 commit comments