-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
38 lines (34 loc) · 946 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
36
37
38
from setuptools import setup, find_packages
import flake8diff
def read(path):
with open(path, 'rb') as fid:
return fid.read().decode('utf-8')
setup(
name="flake8-diff",
version=flake8diff.__version__,
url="http://dealertrack.github.io",
author="Dealertrack Technologies",
author_email="[email protected]",
description=flake8diff.__description__,
long_description='\n' + read('README.rst'),
download_url=(
'https://github.com/dealertrack/flake8-diff/releases/tag/v'
+ flake8diff.__version__
),
include_package_data=True,
packages=find_packages(),
package_data={'flake8-diff': ['README.rst']},
zip_safe=False,
install_requires=[
'flake8',
'argparse',
'blessings',
'six',
],
entry_points={
'console_scripts': [
'flake8-diff=flake8diff.main:main'
]
},
dependency_links=[]
)