This repository has been archived by the owner on Apr 6, 2020. It is now read-only.
forked from warpnet/salt-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
79 lines (68 loc) · 2.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import io
import sys
from setuptools import setup, find_packages
version = "0.0.5"
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
os.system('python setup.py bdist_wheel upload')
sys.exit()
if sys.argv[-1] == 'tag':
os.system("git tag -a %s -m 'version %s'" % (version, version))
os.system("git push --tags")
sys.exit()
with io.open('README.rst', 'r', encoding='utf-8') as readme_file:
readme = readme_file.read()
requirements = [
'salt',
'six',
'pyyaml',
]
if sys.argv[-1] == 'readme':
print(readme)
sys.exit()
setup(
name='salt-lint',
version=version,
description=('A command-line utility that checks for best practices '
'in SaltStack.'),
long_description=readme,
author='Roald Nefs',
author_email='info@roaldnefs.com',
url='https://github.com/roaldnefs/salt-lint',
packages=find_packages(where='lib'),
package_dir={'': 'lib'},
entry_points={
'console_scripts': [
'salt-lint = saltlint.__main__:main',
]
},
include_package_data=True,
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
install_requires=requirements,
license='MIT',
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Bug Tracking',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
],
keywords='salt, saltstack, lint',
)