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
|
# -*- coding: UTF-8 -*-
from setuptools import find_packages, setup
from dodgy import __pkginfo__
_packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])
_short_description = "Dodgy: Searches for dodgy looking lines in Python code"
_install_requires = []
_classifiers = (
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Topic :: Software Development :: Quality Assurance',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
)
setup(
name='dodgy',
url='https://github.com/landscapeio/dodgy',
author='landscape.io',
author_email='code@landscape.io',
description=_short_description,
install_requires=_install_requires,
scripts=['bin/dodgy'],
version=__pkginfo__.get_version(),
packages=_packages,
license='MIT',
keywords='check for suspicious code',
classifiers=_classifiers
)
|