-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (41 loc) · 1.46 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
from setuptools import setup, find_packages
import os
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Application Frameworks',
]
setup(
author="Riccardo Forina",
author_email="riccardo@forina.me",
maintainer="Riccardo Magliocchetti",
maintainer_email="riccardo.magliocchetti@gmail.com",
name='django-admin-bootstrapped',
version='3.0.0',
description='A Bootstrap theme for Django Admin',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
url='https://github.com/roundware/django-admin-bootstrapped',
license='BSD License',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=[
'setuptools',
'Django>=1.8',
],
dependencies = [
'https://github.com/roundware/django-admin-bootstrapped.git@master#egg=django_admin_bootstrapped'
],
test_suite='django_admin_bootstrapped.runtests.runtests',
packages=find_packages(),
include_package_data=True,
zip_safe=False
)