-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 679 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (19 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# encoding: utf-8
from distutils.core import setup
setup(
name='CodeQualityTools',
version='0.1.0',
author='Romulo Tavares',
author_email='clybob@hotmail.com',
packages=['code_quality_tools'],
license='GPL',
url='https://github.com/clybob/code_quality_tools.git',
description='code_quality_tools is a little API, in python, ' +
'to collect some data about code quality of your ' +
'source code (python, css, js).',
long_description=open('README.md').read(),
install_requires=['pep8', 'pyflakes', 'clonedigger'],
entry_points={
'console_scripts': ['code_quality_tools = install:main']
},
)