Skip to content

Commit

Permalink
Merge 0f241bf into 6c1e67e
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Sep 22, 2022
2 parents 6c1e67e + 0f241bf commit e52792d
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 54 deletions.
45 changes: 45 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
[metadata]
name = pylint-django
version = 2.5.3
author = landscape.io
author_email = code@landscape.io
license = GPLv2
description = A Pylint plugin to help Pylint understand the Django web framework
keywords = pylint, django, plugin
url = https://github.com/PyCQA/pylint-django
long_description = file: README.rst, CHANGELOG.rst
classifiers =
Environment :: Console
Intended Audience :: Developers
Operating System :: Unix
Topic :: Software Development :: Quality Assurance
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Framework :: Django :: 1.11
Framework :: Django :: 2.0
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Framework :: Django :: 3.2
project_urls =
Changelog = https://github.com/PyCQA/pylint-django/blob/master/CHANGELOG.rst

[options]
packages = find:
zip_safe = False
install_requires = pylint-plugin-utils>=0.7; pylint>=2.0,<3
include_package_data = True

[options.extras_require]
with_django = Django
for_tests =
django_tables2
factory-boy
coverage
pytest
wheel
django-tastypie
pylint>=2.13
56 changes: 2 additions & 54 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,58 +2,6 @@
"""
Setup module for Pylint plugin for Django.
"""
from setuptools import find_packages, setup
from setuptools import setup

with open("README.rst", encoding="utf-8") as readme, open("CHANGELOG.rst", encoding="utf-8") as changelog:
LONG_DESCRIPTION = readme.read() + "\n" + changelog.read()

setup(
name="pylint-django",
url="https://github.com/PyCQA/pylint-django",
author="landscape.io",
author_email="code@landscape.io",
description="A Pylint plugin to help Pylint understand the Django web framework",
long_description=LONG_DESCRIPTION,
version="2.5.3",
packages=find_packages(),
include_package_data=True,
install_requires=[
"pylint-plugin-utils>=0.7",
"pylint>=2.0,<3",
],
extras_require={
"with_django": ["Django"],
"for_tests": [
"django_tables2",
"factory-boy",
"coverage",
"pytest",
"wheel",
"django-tastypie",
"pylint>=2.13",
],
},
license="GPLv2",
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Topic :: Software Development :: Quality Assurance",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
],
keywords=["pylint", "django", "plugin"],
zip_safe=False,
project_urls={
"Changelog": "https://github.com/PyCQA/pylint-django/blob/master/CHANGELOG.rst",
},
)
setup()

0 comments on commit e52792d

Please sign in to comment.