forked from Korrigan/pepperstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (30 loc) · 741 Bytes
/
Copy pathsetup.py
File metadata and controls
38 lines (30 loc) · 741 Bytes
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 setuptools import setup
def readme():
"""
Extrats contents from README.md
"""
with open('README.md') as r:
return r.read()
def requirements():
"""
Extracts contents from requirements.txt
"""
with open('requirements.txt') as r:
return r.read()
setup(
name='pepperstack',
version='0.0.1',
description='Pepperstack is a host inventory tool',
long_drescription=readme(),
author='Matthieu Rosinski',
classifiers = [
'Programming Language :: Python :: 2.7',
],
packages = [
'pepperstack',
'pepperstack.commands',
'pepperstack.utils',
'pepperstack.models',
],
install_requires=requirements(),
)