forked from koleror/django-admin-views
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (35 loc) · 1.1 KB
/
setup.py
File metadata and controls
39 lines (35 loc) · 1.1 KB
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, find_packages
from admin_views import VERSION
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
readme = f.read()
f.close()
setup(
name='django-admin-views',
version=".".join(map(str, VERSION)),
description='django-admin-views is a simple way to add custom admin views and direct URLs to the Django admin',
long_description=readme,
author='Frank Wiles',
author_email='frank@revsys.com',
url='https://github.com/frankwiles/django-admin-views',
packages=find_packages(),
package_data={
'admin_views': [
'templates/admin/*',
'static/admin_views/icons/*',
]
},
install_requires=[
'django>=1.6',
],
tests_require=['django-coverage', 'coverage'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
)