Added manifest to include static and templates directories in distro and also exclude the sample project from the installed source.
Fixes Github issue #1master
parent
9fadb30670
commit
7159b7709a
|
|
@ -0,0 +1,3 @@
|
|||
recursive-include adminsortable/static *
|
||||
rescursive-include adminsortable/templates *
|
||||
prune sample_project
|
||||
Binary file not shown.
3
setup.py
3
setup.py
|
|
@ -1,7 +1,7 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
try:
|
||||
README = open('README.rst').read()
|
||||
README = open('README').read()
|
||||
except:
|
||||
README = None
|
||||
|
||||
|
|
@ -10,6 +10,7 @@ setup(
|
|||
version=__import__('adminsortable').__version__,
|
||||
description='Drag and drop sorting for models and inline models in Django admin',
|
||||
long_description=README,
|
||||
license='APL',
|
||||
author='Brandon Taylor',
|
||||
author_email='btaylorweb@gmail.com',
|
||||
url='http://btaylorweb.com/',
|
||||
|
|
|
|||
Loading…
Reference in New Issue