1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
#!/usr/bin/env python
# Copyright (c) 2013 AnsibleWorks, Inc.
# All Rights Reserved.
import datetime
from setuptools import setup, find_packages
from ansibleworks import __version__
build_timestamp = datetime.datetime.now().strftime('%Y%m%d%H%M')
setup(
name='ansibleworks',
version=__version__,
author='AnsibleWorks, Inc.',
author_email='support@ansibleworks.com',
description='AnsibleWorks API, UI and Task Engine',
long_description=file('README.md', 'rb').read(),
license='Proprietary',
keywords='ansible',
url='http://github.com/ansible/ansible-commander',
packages=['ansibleworks'],
include_package_data=True,
zip_safe=False,
install_requires=[
'Django>=1.5',
'django-celery',
'django-devserver',
'django-extensions',
'django-filter',
'django-jsonfield',
'djangorestframework',
'pexpect',
'python-dateutil',
'PyYAML',
'South',
],
setup_requires=[],
#tests_require=[
# 'Django>=1.5',
# 'django-celery',
# 'django-devserver',
# 'django-extensions',
# 'django-filter',
# 'django-jsonfield',
# 'django-setuptest',
# 'djangorestframework',
# 'pexpect',
# 'python-dateutil',
# 'PyYAML',
# 'South',
#],
#test_suite='test_suite.TestSuite',
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',
],
},
options={
'egg_info': {
'tag_build': '-dev%s' % build_timestamp,
},
'aliases': {
'dev_build': 'clean --all egg_info sdist',
'release_build': 'clean --all egg_info -b "" sdist',
},
},
)
|