-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·35 lines (31 loc) · 958 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
28
29
30
31
32
33
34
35
from setuptools import setup
INSTALL_REQUIRES = [
"flake8",
]
VERSION = "0.3.0"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="flake8-staged-diff",
version=VERSION,
maintainer="Bastien Gerard",
maintainer_email="[email protected]",
url="https://github.com/bagerard/flake8-staged-diff",
keywords="flake8 diff linter pre-commit",
license="MIT License",
description="flake8 wrapper to run only on modified/staged code",
long_description=long_description,
long_description_content_type="text/markdown",
packages=["flake8_staged_diff"],
install_requires=INSTALL_REQUIRES,
entry_points={
"console_scripts": [
"flake8-staged-diff = flake8_staged_diff.main:main",
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Quality Assurance",
],
include_package_data=True,
)