-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 992 Bytes
/
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
# coding: utf-8
from setuptools import setup
setup(name='pyquality',
version='0.1.0',
author=('Álvaro Justen <[email protected]>',
'Flávio Amieiro <[email protected]>'),
author_email='[email protected]',
url='https://github.com/NAMD/pyquality',
description='Rich reports for Python code quality',
entry_points={'console_scripts': ['pyquality = pyquality.cli:main']},
packages=['pyquality'],
install_requires=['flake8', 'numpy', 'requests', 'matplotlib>=1.3.0',
'strobo', 'jinja2'],
license='GPL',
zip_safe=False,
keywords=['code quality', 'pep8'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)