Skip to content

Commit ca50b5e

Browse files
committed
refactor(setup): Move to setup.cfg
1 parent 12ff50e commit ca50b5e

File tree

3 files changed

+72
-77
lines changed

3 files changed

+72
-77
lines changed

.isort.cfg

-11
This file was deleted.

setup.cfg

+70
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,73 @@
1+
[metadata]
2+
name = django-allauth
3+
version = attr: allauth.__version__
4+
url = https://www.intenct.nl/projects/django-allauth/
5+
author = Raymond Penners
6+
author_email = [email protected]
7+
description = Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication.
8+
long_description = file: README.rst
9+
license = MIT
10+
classifiers =
11+
Development Status :: 5 - Production/Stable
12+
Intended Audience :: Developers
13+
Topic :: Software Development :: Libraries :: Python Modules
14+
Environment :: Web Environment
15+
Topic :: Internet
16+
License :: OSI Approved :: MIT License
17+
Operating System :: OS Independent
18+
Programming Language :: Python
19+
Programming Language :: Python :: 3
20+
Programming Language :: Python :: 3.7
21+
Programming Language :: Python :: 3.8
22+
Programming Language :: Python :: 3.9
23+
Programming Language :: Python :: 3.10
24+
Programming Language :: Python :: 3.11
25+
Framework :: Django
26+
Framework :: Django :: 3.1
27+
Framework :: Django :: 3.2
28+
Framework :: Django :: 4.0
29+
Framework :: Django :: 4.1
30+
Framework :: Django :: 4.2
31+
project_urls =
32+
Documentation = https://django-allauth.readthedocs.io/en/latest/
33+
Changelog = https://github.com/pennersr/django-allauth/blob/main/ChangeLog.rst
34+
Source = https://github.com/pennersr/django-allauth
35+
Tracker = https://github.com/pennersr/django-allauth/issues
36+
Donate = https://github.com/sponsors/pennersr
37+
38+
[options]
39+
python_requires = >=3.7
40+
packages = find:
41+
include_package_data = true
42+
zip_safe = false
43+
tests_require =
44+
Pillow >= 9.0
45+
install_requires =
46+
Django >= 3.1
47+
python3-openid >= 3.0.8
48+
requests-oauthlib >= 0.3.0
49+
requests >= 2.0.0
50+
pyjwt[crypto] >= 1.7
51+
52+
53+
[options.packages.find]
54+
exclude =
55+
example
56+
57+
58+
[isort]
59+
indent=4
60+
combine_star=1
61+
combine_as_imports=1
62+
include_trailing_comma=1
63+
multi_line_output=3
64+
lines_after_imports=2
65+
known_django=django
66+
extra_standard_library=types,requests
67+
known_first_party=allauth
68+
sections=FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
69+
70+
171
[flake8]
272
max-line-length = 88
373
# Black

setup.py

+2-66
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,5 @@
1-
#!/usr/bin/env python
2-
from __future__ import print_function
1+
from setuptools import setup
32

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-
author_email="[email protected]",
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-
)
673

684
if __name__ == "__main__":
69-
setup(**METADATA)
5+
setup()

0 commit comments

Comments
 (0)