-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 1000 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="salt-cumulus",
version="0.0.3",
description="Small salt module providing cumulus.managed, to apply basic config on cumulus switches",
author="Maximilien Cuony",
author_email="maximilien.cuony@arcanite.ch",
url='https://github.com/ArcaniteSolutions/salt-cumulus',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires='sh',
license="MPL",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: Other OS",
"Programming Language :: Python",
"Topic :: System :: Networking",
],
entry_points='''
[salt.loader]
states_dirs = salt_cumulus.loader:states_dirs
'''
)