-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.1 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
from io import open
from os import path
from setuptools import setup, find_packages
THIS_FOLDER = path.abspath(path.dirname(__file__))
# Get package version from .version file
with open(path.join(THIS_FOLDER, '.version')) as f:
VERSION = f.read()
# Get long description from README file
with open(path.join(THIS_FOLDER, 'README.md'), encoding='utf-8') as f:
README = f.read()
setup(
name='saltypie',
version=VERSION,
author='Wilson Santos',
author_email='[email protected]',
url='https://gitlab.com/cathaldallan/saltypie',
description='Saltypie - salt-api wrapper and return parser',
long_description=README,
long_description_content_type="text/markdown",
license='MIT',
keywords='saltstack salt salt-api wrapper',
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'
],
packages=find_packages(exclude=['docs', 'tests']),
install_requires=[
'requests',
'terminaltables',
'colorclass',
'colorama',
'termcolor',
],
)