diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f8aa38c --- /dev/null +++ b/setup.py @@ -0,0 +1,35 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import os +import sys + +from setuptools import setup + + +required = [] + + +setup( + name='obsapi', + version='0.0.1', + description='Python library for accessing the Open Build Service api', + author='Scott Bahling', + author_email='sbahling@suse.de', + packages= [ + 'obsapi', + ], + install_requires=required, + license='GPL-2.0', + classifiers=( + 'Natural Language :: English', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.7', + ), + # entry_points={ + # 'console_scripts': [ + # 'tabbed = tablib.cli:start', + # ], + # } +) |
