Move setup to pbr usage
This commit is contained in:
parent
bddc7b19c7
commit
2177b88d14
@ -1,3 +1,4 @@
|
|||||||
|
pbr>=0.5.22,!=0.5.23,<1.0
|
||||||
pywin32
|
pywin32
|
||||||
wmi
|
wmi
|
||||||
iso8601
|
iso8601
|
31
setup.cfg
Normal file
31
setup.cfg
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
[metadata]
|
||||||
|
name = cloudbase-init
|
||||||
|
version = 0.9.6
|
||||||
|
summary = Portable cloud initialization service
|
||||||
|
description-file =
|
||||||
|
README.rst
|
||||||
|
author = Cloudbase Solutions Srl
|
||||||
|
author-email = apilotti@cloudbasesolutions.com
|
||||||
|
home-page = http://www.cloudbase.it/
|
||||||
|
classifier =
|
||||||
|
Environment :: OpenStack
|
||||||
|
Intended Audience :: Information Technology
|
||||||
|
Intended Audience :: System Administrators
|
||||||
|
License :: OSI Approved :: Apache Software
|
||||||
|
License
|
||||||
|
Operating System :: OS Independent
|
||||||
|
Programming Language :: Python
|
||||||
|
Programming Language :: Python :: 2
|
||||||
|
Programming Language :: Python :: 2.7
|
||||||
|
|
||||||
|
[files]
|
||||||
|
packages =
|
||||||
|
cloudbaseinit
|
||||||
|
|
||||||
|
[global]
|
||||||
|
setup-hooks =
|
||||||
|
pbr.hooks.setup_hook
|
||||||
|
|
||||||
|
[entry_points]
|
||||||
|
console_scripts =
|
||||||
|
cloudbase-init = cloudbaseinit.shell:main
|
32
setup.py
32
setup.py
@ -16,32 +16,6 @@
|
|||||||
|
|
||||||
import setuptools
|
import setuptools
|
||||||
|
|
||||||
from cloudbaseinit.openstack.common import setup as common_setup
|
setuptools.setup(
|
||||||
|
setup_requires=['pbr>=0.5.22,!=0.5.23'],
|
||||||
requires = common_setup.parse_requirements()
|
pbr=True)
|
||||||
dependency_links = common_setup.parse_dependency_links()
|
|
||||||
|
|
||||||
setuptools.setup(name='cloudbase-init',
|
|
||||||
version='0.9.5',
|
|
||||||
description='Portable cloud initialization service',
|
|
||||||
author='Cloudbase Solutions Srl',
|
|
||||||
author_email='apilotti@cloudbasesolutions.com',
|
|
||||||
url='http://www.cloudbase.it/',
|
|
||||||
classifiers=['Environment :: OpenStack',
|
|
||||||
'Intended Audience :: Information Technology',
|
|
||||||
'Intended Audience :: System Administrators',
|
|
||||||
'License :: OSI Approved :: Apache Software '
|
|
||||||
'License',
|
|
||||||
'Operating System :: OS Independent',
|
|
||||||
'Programming Language :: Python',
|
|
||||||
'Programming Language :: Python :: 2',
|
|
||||||
'Programming Language :: Python :: 2.7'],
|
|
||||||
cmdclass=common_setup.get_cmdclass(),
|
|
||||||
packages=setuptools.find_packages(exclude=['bin']),
|
|
||||||
install_requires=requires,
|
|
||||||
dependency_links=dependency_links,
|
|
||||||
include_package_data=True,
|
|
||||||
setup_requires=['setuptools_git>=0.4'],
|
|
||||||
entry_points={'console_scripts':
|
|
||||||
['cloudbase-init = cloudbaseinit.shell:main']},
|
|
||||||
py_modules=[])
|
|
||||||
|
5
test-requirements.txt
Normal file
5
test-requirements.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
hacking>=0.5.6,<0.8
|
||||||
|
coverage>=3.6
|
||||||
|
fixtures>=0.3.14
|
||||||
|
mock>=1.0
|
||||||
|
testtools>=0.9.32
|
Loading…
x
Reference in New Issue
Block a user