Files
python-swupd/setup.py
Guillermo Adrian Ponce 627f561a76 Initial commit
Signed-off-by: Guillermo Adrian Ponce <guillermo.a.ponce.castaneda@intel.com>
2016-07-27 10:56:56 -05:00

30 lines
901 B
Python

#!/usr/bin/env python
from setuptools import setup
def readme():
with open("README.rst") as f:
return f.read()
setup (
name='swupd',
version='0.1.0',
description='Python bindings for swupd',
long_description=readme(),
author='Guillermo Ponce',
author_email='guillermo.a.ponce.castneda@intel.com',
license='Apache-2.0',
packages=['swupd'],
platforms='Clear Linux for Intel Architecture',
classifiers=[
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: System :: Installation/Setup',
],
)