Added setup files to make the package installable using pip

pull/2/head 0.1.0
Fabio Caccamo 2015-11-13 14:39:38 +01:00
parent 8b6028b944
commit cac97043ad
3 changed files with 30 additions and 0 deletions

4
MANIFEST.in 100644
View File

@ -0,0 +1,4 @@
include LICENSE.txt
include README.md
recursive-include admin_interface *
recursive-exclude * *.pyc __pycache__ .DS_Store

2
setup.cfg 100644
View File

@ -0,0 +1,2 @@
[metadata]
description-file = README.md

24
setup.py 100644
View File

@ -0,0 +1,24 @@
#!/usr/bin/env python
from setuptools import find_packages, setup
exec(open('admin_interface/version.py').read())
setup(
name='django-admin-interface',
packages=find_packages(),
include_package_data=True,
license='MIT License',
version=__version__,
description='django-admin-interface is a modern admin interface customizable by the admin itself.',
author='Fabio Caccamo',
author_email='fabio.caccamo@gmail.com',
url='https://github.com/fabiocaccamo/django-admin-interface',
download_url='https://github.com/fabiocaccamo/django-admin-interface/archive/%s.tar.gz' % __version__,
keywords=['django', 'admin', 'interface', 'ui', 'flat', 'theme', 'custom'],
install_requires=[
'django-colorfield==0.1.10'
],
classifiers=[]
)