-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
49 lines (42 loc) · 1.13 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
49
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
setup(name='checkmate',
version='0.2.0',
author=u'Andreas Dewes - QuantifiedCode UG (haftungsbeschränkt)',
author_email = '[email protected]',
license = 'MIT',
install_requires = """
pylint
pyflakes
pep8
six
chardet
blitzdb
pyyaml
sqlalchemy
""",
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.2.0: Beta-release
"""
)