forked from jgosmann/pylint-venv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.09 KB
/
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
from setuptools import setup
setup(
name='pylint-venv',
version='2.0.0',
description=(
'pylint-venv provides a Pylint init-hook to use the same Pylint '
'installation with different virtual environments.'
),
long_description=open('README.rst').read(),
author='Jan Gosmann, Federico Jaramillo',
author_email='[email protected], [email protected]',
url='https://github.com/jgosmann/pylint-venv/',
py_modules=['pylint_venv'],
provides=['pylint_venv'],
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development',
],
)