forked from django-fluent/django-fluent-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·49 lines (40 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
47
48
49
#!/usr/bin/env python
from setuptools import setup, find_packages
from os.path import dirname, join
import sys, os
# When creating the sdist, make sure the django.mo file also exists:
try:
os.chdir('fluent_dashboard')
from django.core.management.commands.compilemessages import compile_messages
compile_messages(sys.stderr)
finally:
os.chdir('..')
setup(
name='django-fluent-dashboard',
version='0.4.0dev',
license='Apache License, Version 2.0',
install_requires=[
'django-admin-tools>=0.4.1', # 0.4.1 is the first release with Django 1.3 support.
],
extras_require = {
'cachestatus': ['dashboardmods>=0.2.2'],
},
description='An improved django-admin-tools dashboard for Django projects',
long_description=open(join(dirname(__file__), 'README.rst')).read(),
author='Diederik van der Boor',
author_email='[email protected]',
url='https://github.com/edoburu/django-fluent-dashboard',
download_url='https://github.com/edoburu/django-fluent-dashboard/zipball/master',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)