This repository has been archived by the owner on Feb 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
50 lines (44 loc) · 1.51 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python3
from setuptools import setup, find_packages
from os import path
import sys
if sys.version_info < (3, 2):
print('whale-linter requires at least Python 3.2 to run.')
sys.exit(1)
here = path.abspath(path.dirname(__file__))
version = '0.0.9-1'
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='whale-linter',
version=version,
packages=find_packages(),
install_requires=requirements,
scripts=['bin/whale-linter'],
author="Jerome Pin",
author_email="[email protected]",
maintainer="Jerome Pin",
maintainer_email="[email protected]",
description="A simple non professional Dockerfile linter",
long_description='',
include_package_data=True,
zip_safe=False,
license='MIT',
url='https://github.com/jeromepin/whale-linter',
download_url='https://github.com/jeromepin/whale-linter/tarball/' + version,
keywords=['docker', 'linter'],
platforms='Linux',
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
"Intended Audience :: System Administrators"
]
)