Re: setuptools + data_files = 2

2014-10-24 Thread luc2
On 2014-10-23, Simon Kennedy sffjun...@gmail.com wrote: If you're creating an sdist then you'll need to create a MANIFEST.in file in the same folder as setup.py with the following contents include share/test_file.txt If you're creating a bdist (egg or wheel) the parameter name you need

setuptools + data_files = 2

2014-10-22 Thread luc2
hello, would you know how to make data_files work in setuptools ? i can't figure out how to put datas in the generated .tar.gz $ find . ./hello ./hello/__init__.py ./share ./share/test_file.txt ./setup.py $ cat ./hello/__init__.py def hello(): print( 'hello' ) $ cat ./share/test_file.txt