adrian-turjak 5fa7a4e57e update version and package name
* 'adjutant' is taken, so renaming the package to
  'python-adjutant'.
* This pypi package is needed for ease of testing plugins
  as they need to import core stacktask features to run tests.

Change-Id: I08f87ee2ab2ab7ae624cf24eae5801a857681737
2017-05-23 12:00:42 +12:00

43 lines
1.3 KiB
Python

from setuptools import setup, find_packages
with open('requirements.txt') as f:
required = f.readlines()
with open('package_readme.rst') as file:
long_description = file.read()
setup(
name='python-adjutant',
version='0.2.1',
description='An admin task workflow service for openstack.',
long_description=long_description,
url='https://github.com/catalyst/adjutant',
author='Adrian Turjak',
author_email='adriant@catalyst.net.nz',
license='Apache 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Framework :: Django :: 1.11',
'Programming Language :: Python :: 2.7',
'Environment :: OpenStack',
],
keywords='openstack keystone users tasks registration workflow',
packages=find_packages(),
package_data={
'adjutant': [
'api/v*/templates/*.txt',
'notifications/templates/*.txt',
'notifications/*/templates/*.txt']},
install_requires=required,
entry_points={
'console_scripts': [
'adjutant-api = adjutant:management_command',
],
}
)