-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (35 loc) · 1.33 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
import os
from setuptools import setup
# DEV pakcages: django-hamlpy pyScss honcho watchdog
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-slick',
version=__import__('slick').VERSION,
description='Slick responsive theme for Django admin.',
long_description=read('README.md'),
long_description_content_type="text/markdown",
author='Sjoerd Arendsen',
author_email='[email protected]',
packages=['slick', 'slick.templatetags'],
url='https://github.com/docc/django-slick/',
include_package_data=True,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Framework :: Django',
'License :: Free for non-commercial use',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Environment :: Web Environment',
'Topic :: Software Development',
'Topic :: Software Development :: User Interfaces',
],
zip_safe=False,
)