-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
32 lines (29 loc) · 1.02 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
#!/usr/bin/python3
from __future__ import absolute_import
from setuptools import setup
try:
with open("requirements.txt", encoding='utf-8') as requirements:
INSTALL_REQUIRES = [req.strip() for req in requirements.readlines()]
except OSError:
INSTALL_REQUIRES = None
setup(name='jens',
version='1.4.1',
description='Jens is a Puppet modules/hostgroups librarian',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
author='Nacho Barrientos',
author_email='[email protected]',
url='https://github.com/cernops/jens',
install_requires=INSTALL_REQUIRES,
packages=[
'jens', 'jens.webapps'
],
scripts=[
'bin/jens-update', 'bin/jens-stats',
'bin/jens-gitlab-producer-runner', 'bin/jens-purge-queue',
'bin/jens-reset', 'bin/jens-gc', 'bin/jens-config'
],
)