forked from twisted/twistedchecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.28 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
#!/usr/bin/env python
# -*- test-case-name: twistedchecker -*-
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
from setuptools import find_packages, setup
setup(
name='TwistedChecker',
description='A Twisted coding standard compliance checker.',
version='0.3.0',
author='Twisted Matrix Laboratories',
author_email='twisted-python@twistedmatrix.com',
url='https://github.com/twisted/twistedchecker',
packages=find_packages(),
package_data={
"twistedchecker": ["configuration/pylintrc"]
},
scripts=[
'bin/twistedchecker'
],
license='MIT',
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Quality Assurance"
],
keywords=[
"twisted", "checker", "compliance", "pep8"
],
install_requires=[
"pylint == 0.26.0",
"logilab-common == 0.62.0",
"pep8 == 1.5.7"
],
long_description=file('README.rst').read()
)