package_data question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • bytecolor

    #1

    package_data question

    I have a simple package. I'm trying to add an examples subdirectory
    with distutils. I'm using Python 2.4 on Linux. My file layout and
    setup.py can be found here:



    I've tried using data_files as well, with the same result; examples/
    fig2.3.apt is not added to the tarball.

    --
    bytecolor

  • Goldfish

    #2
    Re: package_data question

    On Mar 5, 1:56 am, "bytecolor" <byteco...@yaho o.comwrote:
    I have a simple package. I'm trying to add an examples subdirectory
    with distutils. I'm using Python 2.4 on Linux. My file layout and
    setup.py can be found here:
    >

    >
    I've tried using data_files as well, with the same result; examples/
    fig2.3.apt is not added to the tarball.
    >
    --
    bytecolor
    I have a package along with a samples section. I have both a setup.py
    script along with a MANIFEST.in file to make sure everything gets in.
    You can see both of the files at https://springpython.python-hosting..../trunk/samples

    That is for the samples section. For my main package, I have something
    similar at https://springpython.python-hosting....wser/trunk/src

    Comment

    • bytecolor

      #3
      Re: package_data question

      On Mar 5, 3:52 pm, "Goldfish" <gregt...@minds pring.comwrote:
      On Mar 5, 1:56 am, "bytecolor" <byteco...@yaho o.comwrote:
      I have a package along with a samples section. I have both a setup.py
      script along with a MANIFEST.in file to make sure everything gets in.
      You can see both of the files athttps://springpython.py thon-hosting.com/browser/trunk/samples
      http://tinyurl.com/yo3qqo
      >
      That is for the samples section. For my main package, I have something
      similar athttps://springpython.py thon-hosting.com/browser/trunk/src

      Comment

      Working...