-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
40 lines (37 loc) · 1.1 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
35
36
37
38
39
40
import os.path
from setuptools import setup, find_packages
__version__ = '0.22.0'
description = (
'A plugin for making Pylint aware of the fields of protobuf-generated '
'classes'
)
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
long_description = f.read()
setup(
name='pylint-protobuf',
version=__version__,
url='https://github.com/nelfin/pylint-protobuf',
author='Andrew Haigh',
author_email='[email protected]',
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
keywords=['pylint', 'plugin', 'protobuf'],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Topic :: Software Development :: Quality Assurance',
],
packages=find_packages(),
install_requires=[
'astroid',
'pylint',
'protobuf',
],
zip_safe=False
)