mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
Add docs to distribution.
This commit is contained in:
parent
be4fa62bd7
commit
15bb64fa3e
2 changed files with 6 additions and 1 deletions
|
@ -5,3 +5,5 @@ include runtests.py
|
|||
include tox.ini
|
||||
recursive-include dpaste/templates *
|
||||
recursive-include dpaste/static *
|
||||
recursive-include docs *
|
||||
recursive-exclude docs/_build *
|
||||
|
|
5
setup.py
5
setup.py
|
@ -35,7 +35,10 @@ setup(
|
|||
'Framework :: Django',
|
||||
],
|
||||
packages=find_packages(),
|
||||
package_data={'dpaste': ['static/*.*', 'templates/*.*']},
|
||||
package_data={
|
||||
'dpaste': ['static/*.*', 'templates/*.*'],
|
||||
'docs': ['*'],
|
||||
},
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
'django>=1.4',
|
||||
|
|
Loading…
Reference in a new issue