This repository has been archived by the owner on Apr 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathsetup.py
47 lines (44 loc) · 1.44 KB
/
setup.py
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
from distutils.core import setup
# See http://guide.python-distribute.org/
# See http://docs.python.org/distutils/setupscript.html
setup(
name='ramona',
description='Enterprise-grade runtime supervisor',
author='Ales Teska',
author_email='[email protected]',
version='master', # Also in ramona.__init__.py (+ relevant version format specification)
packages=['ramona','ramona.server','ramona.console','ramona.console.cmd','ramona.httpfend'],
license='BSD 2-clause "Simplified" License',
long_description=open('README').read(),
url='http://ateska.github.com/ramona/',
download_url='http://pypi.python.org/pypi/ramona',
install_requires=["pyev"],
requires=["pyev"],
zip_safe=True,
package_data={
'ramona.httpfend': [
'*.html',
'static/miniajax/*.js',
'static/bootstrap/css/*.css',
'static/img/*.gif',
'static/img/*.ico',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
'Topic :: System :: Monitoring',
'Topic :: System :: Systems Administration',
],
)