forked from jgosmann/pylint-venv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 1.15 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
32
33
34
#!/usr/bin/env python
from distutils.core import setup
with open('README.rst') as f:
long_description = f.read()
setup(
name='pylint-venv',
version='1.2.0',
description='pylint-venv provides a Pylint init-hook to use the same '
'Pylint installation with different virtual environments.',
long_description=long_description,
author='Jan Gosmann, Federico Jaramillo',
author_email='jan@hyper-world.de, federicojaramillom@gmail.com',
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',
]
)