-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (32 loc) · 1.2 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
#!/usr/bin/env python
from setuptools import setup,find_packages
METADATA = dict(
name='django-bigbrother',
version='0.4.2',
author='Anders Petersson',
author_email='me@anderspetersson.se',
description='Modular Dashboard for Django Projects',
long_description='Django-Bigbrother is a reusable, modular, dashboard for Django Projects. Designed to be easy to extend.',
url='http://github.com/anderspetersson/django-bigbrother',
keywords='django dashboard bigbrother monitoring',
install_requires=['django>=1.6', 'python-dateutil>=1.4,<2.0', 'django-qsstats-magic'],
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Monitoring',
'Environment :: Web Environment',
'Operating System :: Unix',
'Programming Language :: Python',
'Framework :: Django',
],
zip_safe = False,
packages=find_packages(),
extra_requires={
'system': ['psutil>=0.3']
}
)
if __name__ == '__main__':
setup(**METADATA)