-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (40 loc) · 1.21 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
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
from admin_styles import __version__
try:
from pypandoc import convert
except ImportError:
def convert(filename, fmt):
with open(filename) as fd:
return fd.read()
DESCRIPTION = 'django admin styles'
CLASSIFIERS = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Development Status :: 3 - Alpha',
]
setup(
name='django-admin-styles',
version=__version__,
author='Alaric Mägerle',
author_email='[email protected]',
description=DESCRIPTION,
long_description=convert('README.md', 'rst'),
url='https://github.com/rouxcode/django-admin-styles',
license='MIT',
keywords=['django'],
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=[
'django>=1.11'
],
packages=find_packages(exclude=['example', 'docs']),
include_package_data=True,
zip_safe=False,
)