forked from drivet/pylint-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (30 loc) · 866 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
"""
pylint-badge
----
A small python module to generate pylint badges directly from command line
"""
from setuptools import setup
setup(
name='pylint-badge',
version='0.1',
url='https://github.com/lucasventurasc/pylint-badge/',
license='MIT',
author='Lucas Ventura',
author_email='lnventura@hotmail.com',
description='A python module to generate pylint badges instantly',
long_description=__doc__,
py_modules=['pylint_badge'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
],
classifiers=[
'Environment :: Local',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Version Control'
]
)