Hi all,
I'm new to setuptools.
I have a directory structure like
setup.py
src/
mypkg/
__init__.py
module1.py
module2.py
doc/
build/
html/
index.html
intro.html
source/
intro.rst
and my setup.py looks like
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='cabletlk',
version='0.1',
description='Cable Toolkit',
author='Johan Ekh',
author_email='[email protected]',
packages=['mypkg',],
)
I would like to include the content in "doc/built/html" in my distribution.
How can I do that?
BR / Johan
_______________________________________________
Distutils-SIG maillist - [email protected]
http://mail.python.org/mailman/listinfo/distutils-sig