diff options
| author | Scott Bahling <sbahling@suse.com> | 2020-09-03 18:29:33 +0200 |
|---|---|---|
| committer | Scott Bahling <sbahling@suse.com> | 2020-09-03 18:31:29 +0200 |
| commit | 44a82f72803b736783f3ca41f309e7202908e6f5 (patch) | |
| tree | 45242522fb99eeac5bf5a652f73c19ef2bd5ab62 /setup.py | |
| parent | 8ed467497a4b259f61a7129c19f1134aaa405cb8 (diff) | |
| download | obsapi-44a82f72803b736783f3ca41f309e7202908e6f5.tar.gz obsapi-44a82f72803b736783f3ca41f309e7202908e6f5.tar.xz obsapi-44a82f72803b736783f3ca41f309e7202908e6f5.zip | |
Add install requirements
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -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', |
