We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c19d6e commit 596ebe9Copy full SHA for 596ebe9
setup.py
@@ -3,6 +3,12 @@
3
from __future__ import absolute_import
4
from setuptools import setup
5
6
+try:
7
+ with open("requirements.txt", encoding='utf-8') as requirements:
8
+ INSTALL_REQUIRES = [req.strip() for req in requirements.readlines()]
9
+except OSError:
10
+ INSTALL_REQUIRES = None
11
+
12
setup(name='jens',
13
version='1.4.0',
14
description='Jens is a Puppet modules/hostgroups librarian',
@@ -14,6 +20,7 @@
20
author='Nacho Barrientos',
15
21
author_email='[email protected]',
16
22
url='https://github.com/cernops/jens',
23
+ install_requires=INSTALL_REQUIRES,
17
24
packages=[
18
25
'jens', 'jens.webapps'
19
26
],
0 commit comments