summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py10
1 files 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',