1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 23:51:09 +03:00
awx/setup.py

70 lines
2.0 KiB
Python
Raw Normal View History

2013-05-03 08:14:14 +04:00
#!/usr/bin/env python
# Copyright (c) 2013 AnsibleWorks, Inc.
# All Rights Reserved.
import datetime
2013-05-03 08:14:14 +04:00
from setuptools import setup, find_packages
from ansibleworks import __version__
2013-05-03 08:14:14 +04:00
build_timestamp = datetime.datetime.now().strftime('%Y%m%d%H%M')
2013-05-03 08:14:14 +04:00
setup(
name='ansibleworks',
2013-05-03 08:14:14 +04:00
version=__version__,
author='AnsibleWorks, Inc.',
author_email='support@ansibleworks.com',
description='AnsibleWorks API, UI and Task Engine',
2013-05-23 21:36:59 +04:00
long_description='AnsibleWorks API, UI and Task Engine',
2013-05-03 08:14:14 +04:00
license='Proprietary',
keywords='ansible',
url='http://github.com/ansible/ansible-commander',
packages=['ansibleworks'],
2013-05-03 08:14:14 +04:00
include_package_data=True,
zip_safe=False,
install_requires=[
'Django>=1.5',
'django-celery',
'django-extensions',
'django-filter',
'django-jsonfield',
'django-taggit',
'djangorestframework>=2.3.0,<2.4.0',
2013-05-03 08:14:14 +04:00
'pexpect',
'python-dateutil',
'PyYAML',
'South>=0.8,<2.0',
2013-05-03 08:14:14 +04:00
],
setup_requires=[],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators'
'License :: Other/Proprietary License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Systems Administration',
],
entry_points = {
'console_scripts': [
'ansibleworks-manage = ansibleworks:manage',
2013-05-03 08:14:14 +04:00
],
},
options={
'egg_info': {
'tag_build': '-dev%s' % build_timestamp,
2013-05-03 08:14:14 +04:00
},
'aliases': {
'dev_build': 'clean --all egg_info sdist',
'release_build': 'clean --all egg_info -b "" sdist',
},
},
)