forked from schubergphilis/towerlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·54 lines (48 loc) · 1.93 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
try:
from pipenv.project import Project
from pipenv.utils import convert_deps_to_pip
pfile = Project().parsed_pipfile
requirements = convert_deps_to_pip(pfile['packages'], r=False)
test_requirements = convert_deps_to_pip(pfile['dev-packages'], r=False)
except ImportError:
# get the requirements from the requirements.txt
requirements = [line.strip()
for line in open('requirements.txt').readlines()
if line.strip() and not line.startswith('#')]
# get the test requirements from the test_requirements.txt
test_requirements = [line.strip()
for line in
open('dev-requirements.txt').readlines()
if line.strip() and not line.startswith('#')]
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
version = open('.VERSION').read()
setup(
name='''towerlib''',
version=version,
description='''A python library to interface with ansible tower's (awx) api.''',
long_description=readme + '\n\n' + history,
author='''Costas Tyfoxylos''',
author_email='''ctyfoxylos@schubergphilis.com''',
url='''https://github.com/schubergphilis/towerlib.git''',
packages=find_packages(where='.', exclude=('tests', 'hooks', '_CI*')),
package_dir={'''towerlib''':
'''towerlib'''},
include_package_data=True,
install_requires=requirements,
license='MIT',
zip_safe=False,
keywords='''towerlib tower awx api ansible python''',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
],
test_suite='tests',
tests_require=test_requirements
)