From 44a82f72803b736783f3ca41f309e7202908e6f5 Mon Sep 17 00:00:00 2001 From: Scott Bahling Date: Thu, 3 Sep 2020 18:29:33 +0200 Subject: Add install requirements --- setup.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index c1298c2..bf79cf2 100644 --- a/setup.py +++ b/setup.py @@ -7,8 +7,6 @@ from setuptools.command.test import test as TestCommand import versioneer -required = [] - PROJECT = 'obsapi' versioneer.VCS = 'git' @@ -46,11 +44,10 @@ setup( cmdclass=cmdclass, description='Python library for accessing the Open Build Service api', author='Scott Bahling', - author_email='sbahling@suse.de', + author_email='sbahling@suse.com', packages=[ 'obsapi', ], - install_requires=required, license='GPL-2.0', classifiers=( 'Natural Language :: English', @@ -59,6 +56,11 @@ setup( 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.7', ), + install_requires=[ + 'requests', + 'lxml', + 'jinja2', + ], # entry_points={ # 'console_scripts': [ # 'tabbed = tablib.cli:start', -- cgit v1.2.3