-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathsetup.py
34 lines (30 loc) · 1.07 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='django-admin-menu',
version=__import__('admin_menu').__version__,
description='A Django admin theme with a horizontal, tabbed navigation bar',
long_description=readme(),
long_description_content_type="text/markdown",
url='http://github.com/cdrx/django-admin-menu',
author='Chris Rose',
license='MIT',
packages=['admin_menu'],
install_requires=[
'libsass>=0.20,<=1.0'
],
zip_safe=False,
keywords=['django', 'admin', 'theme', 'interface', 'menu', 'navigation'],
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
)