-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
35 lines (30 loc) · 890 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
33
34
35
""" package setup
"""
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def readme():
with open('README.md') as f:
return f.read()
def requirements():
with open('requirements.txt', 'r') as f:
return f.read().splitlines()
setup(name='python-foreman',
version='0.14.1',
description='Python class to communicate with Foreman via API v2',
long_description=readme(),
keywords=['foreman'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
author='Thomas Krahn',
author_email='[email protected]',
license='MIT',
url='https://github.com/Nosmoht/python-foreman',
packages=['foreman'],
install_requires=requirements(),
)