forked from quantifiedcode/checkmate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (41 loc) · 1.19 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
41
42
43
44
45
46
47
48
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
setup(name='checkmate',
version='0.0.2',
author=u'Andreas Dewes - QuantifiedCode UG (haftungsbeschränkt)',
author_email = 'andreas@quantifiedcode.com',
license = 'Affero GPL (AGPL)',
install_requires = """
pylint
pyflakes
pep8
six
blitzdb
pyyaml
""",
entry_points = {
'console_scripts': [
'checkmate = checkmate.scripts.manage:main',
],
},
url='https://github.com/quantifiedcode/checkmate',
packages=find_packages(),
zip_safe = False,
description='A meta-code checker written in Python.',
long_description="""
Checkmate is a cross-language (meta-)tool for static code analysis, written in Python.
Unlike other tools, it provides a global overview of the code quality in a project and aims
to provide clear, actionable insights to the user.
Documentation
=============
The documentation can be found `here <https://docs.quantifiedcode.com/checkmate>`.
Source Code
===========
The source code can be found on `Github <https://github.com/quantifiedcode/checkmate>`.
Changelog
=========
* 0.0.2: Added dependencies information, fixed broken JSHint plugin.
* 0.0.2: Initial release.
"""
)