Include templates in install.
parent
eee5dda5ba
commit
e5eaaa987c
|
|
@ -2,4 +2,4 @@ include README.rst
|
|||
include LICENSE
|
||||
include DOCS.rst
|
||||
include CHANGES.rst
|
||||
recursive-include polymorphic/templates/ *.html
|
||||
recursive-include polymorphic/templates *
|
||||
|
|
|
|||
20
setup.py
20
setup.py
|
|
@ -1,18 +1,26 @@
|
|||
from distutils.core import setup
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name = 'django_polymorphic',
|
||||
version = '0.2',
|
||||
description = 'Seamless Polymorphic Inheritance for Django Models',
|
||||
url = 'https://github.com/chrisglass/django_polymorphic',
|
||||
|
||||
author = 'Bert Constantin',
|
||||
author_email = 'bert.constantin@gmx.de',
|
||||
|
||||
maintainer = 'Christopher Glass',
|
||||
maintainer_email = 'tribaal@gmail.com',
|
||||
url = 'https://github.com/chrisglass/django_polymorphic',
|
||||
packages = [
|
||||
'polymorphic',
|
||||
'polymorphic.templatetags',
|
||||
],
|
||||
|
||||
packages = find_packages(),
|
||||
package_data = {
|
||||
'polymorphic': [
|
||||
'templates/admin/polymorphic/*.html',
|
||||
],
|
||||
},
|
||||
|
||||
install_requires=['setuptools'],
|
||||
|
||||
classifiers=[
|
||||
'Framework :: Django',
|
||||
'Intended Audience :: Developers',
|
||||
|
|
|
|||
Loading…
Reference in New Issue