forked from rsaikali/django-skwissh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (52 loc) · 1.68 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
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
import os
import skwissh
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: French',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: System :: Monitoring',
]
setup(
author="Roland Saikali",
author_email="[email protected]",
name='django-skwissh',
version=skwissh.__version__,
description='SSH monitoring Django application',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
url='http://skwissh.com/',
download_url='https://github.com/rsaikali/django-skwissh',
license='GNU General Public License',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=[
'django',
'kronos',
'Fabric',
'django-extra-views',
'django-kronos',
'django-jenkins',
],
packages=find_packages(),
package_data={'': [
'templates/*.html',
'templates/*.js',
'templates/base/*.html',
'static/skwissh/images/foundation/orbit/*',
'static/skwissh/images/skwissh/*',
'static/skwissh/javascripts/*.js',
'static/skwissh/javascripts/jqplot/plugins/*.js',
'static/skwissh/stylesheets/*',
'locale/*/LC_MESSAGES/*',
'fixtures/*.json',
]},
include_package_data=True,
test_suite="testproject.runtests.runtests",
)