
* This change brings the role name in line with the upstream (unapproved) spec: https://review.openstack.org/#/c/245629/5/specs/common-default-policy.rst * Renamed mod_or_owner decorator to mod_or_admin * Debian package version bumped to 0.1.1a4 Change-Id: I312c2a6baec22959f83ab1e09370de868076730b
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
with open('requirements.txt') as f:
|
|
required = f.readlines()
|
|
|
|
setup(
|
|
name='stacktask',
|
|
|
|
version='0.1.1a4',
|
|
description='A user task service for openstack.',
|
|
long_description=(
|
|
'A task service to sit alongside keystone and ' +
|
|
'add some missing functionality.'),
|
|
url='https://github.com/catalyst/stacktask',
|
|
author='Adrian Turjak',
|
|
author_email='adriant@catalyst.net.nz',
|
|
license='Apache 2.0',
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Programming Language :: Python :: 2.7',
|
|
],
|
|
|
|
keywords='openstack keystone users tasks registration workflow',
|
|
|
|
packages=find_packages(),
|
|
package_data={
|
|
'stacktask': [
|
|
'api/v*/templates/*.txt',
|
|
'notifications/templates/*.txt',
|
|
'notifications/*/templates/*.txt']},
|
|
install_requires=required,
|
|
entry_points={
|
|
'console_scripts': [
|
|
'stacktask = stacktask:management_command',
|
|
],
|
|
}
|
|
)
|