-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathsetup.py
35 lines (33 loc) · 1002 Bytes
/
setup.py
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
# -*- coding: UTF-8 -*-
"""
Setup module for Pylint plugin for Django.
"""
import os
from setuptools import setup, find_packages
setup(
name='pylint-django',
url='https://github.com/PyCQA/pylint-django',
author='landscape.io',
author_email='[email protected]',
description='A Pylint plugin to help Pylint understand the Django web framework',
version='0.9.2',
packages=find_packages(),
install_requires=[
'pylint-plugin-utils>=0.2.1',
'pylint>=1.8.2',
'Django',
],
license='GPLv2',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: Unix',
'Topic :: Software Development :: Quality Assurance',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords=['pylint', 'django', 'plugin'],
zip_safe=False,
)