Update of /cvsroot/freevo/freevo/Docs/plugin_writing/code
In directory sc8-pr-cvs1:/tmp/cvs-serv18532/code

Added Files:
        MANIFEST.in dir setup.py 
Log Message:
update

--- NEW FILE: MANIFEST.in ---
recursive-include src *.py
recursive-include share *
include *


--- NEW FILE: dir ---
root
  |--> setup.py
  |--> MANIFEST.in
  |
  |--> share
  | |--> images
  | | |--> foo.png
  |
  |--> src
  | |--> video
  | | |--> plugins
  | | | |--> __init__.py (empty)
  | | | |--> foo.py

--- NEW FILE: setup.py ---
#!/usr/bin/env python

"""Setup script for my freevo plugin."""


__revision__ = "$Id: setup.py,v 1.1 2003/11/15 12:31:34 dischi Exp $"

from distutils.core import setup, Extension
import distutils.command.install
import freevo.util.distutils

# now start the python magic
setup (name = "nice_plugin",
       version = '0.1',
       description = "My first plugin",
       author = "me",
       author_email = "[EMAIL PROTECTED]",
       url = "http://i-also-have-a-web.address";,

       package_dir = freevo.util.distutils.package_dir,
       packages = freevo.util.distutils.packages,
       data_files = freevo.util.distutils.data_files
       )




-------------------------------------------------------
This SF. Net email is sponsored by: GoToMyPC
GoToMyPC is the fast, easy and secure way to access your computer from
any Web browser or wireless device. Click here to Try it Free!
https://www.gotomypc.com/tr/OSDN/AW/Q4_2003/t/g22lp?Target=mm/g22lp.tmpl
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to