-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (37 loc) · 1.2 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
# -*- coding: utf-8 -*-
'''
Setup File for Salint
'''
from setuptools import setup
setup(
name='salint',
version='0.0.2',
description='Linter for SaltStack States',
url='https://github.com/gtmanfred/salint',
author='Daniel Wallace',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Apache Software License',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=['salint', 'salint.rules'],
entry_points={ # Optional
'console_scripts': [
'salint=salint.script:main',
],
},
project_urls={
'Bug Reports': 'https://github.com/gtmanfred/salint/issues',
'Source': 'https://github.com/gtmanfred/salint/',
},
)