-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.18 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
# -*- coding: utf-8 -*-
# flake8-chart - flake8 stats visualised
# Copyright (C) 2016 james sangho nah <[email protected]>
from setuptools import setup
setup(
name="flake8-chart",
description="flake8 stats visualised",
long_description=open("README.rst").read(),
version="0.1.5",
author="james sangho nah",
author_email="[email protected]",
license="MIT License",
url="https://github.com/microamp/flake8-chart",
install_requires=["click>=3.3",
"pygal>=1.6.2"],
py_modules=["flake8chart"],
package_data={"": ["README.rst", "LICENSE"]},
include_package_data=True,
zip_safe=False,
classifiers=(
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Quality Assurance"
),
entry_points={"console_scripts": ["flake8chart = flake8chart:flake8chart"]}
)