manifest

How to include a .ini file in my python package when installing via pip from TFS2017?

How to include a .ini file in my python package when installing via pip from TFS2017? Question: I have a library that requires a .ini file at some point (a default config file if none provided by the user). Here is the hierarchy, with the required file marked: ├───src │ ├───main │ │ │ MANIFEST.in …

Total answers: 1

What is the graft command in Python's MANIFEST.in file?

What is the graft command in Python's MANIFEST.in file? Question: I found a Python project with a MANIFEST.in file. I can guess at the meaning of much of it, but I am unclear on the meaning of the line: graft tools Asked By: Michael Felt || Source Answers: You can see such a file in …

Total answers: 1

How can I include package_data without a MANIFEST.in file?

How can I include package_data without a MANIFEST.in file? Question: How can I include package_data for sdist without a MANIFEST.in file? My setup.py looks like this: import setuptools setuptools.setup( name=’foo’, version=’2015.3′, license=’commercial’, packages=setuptools.find_packages(), package_data={”: [‘foo/bar.txt’]}, ) Versions: user@host> python Python 2.7.6 (default, Mar 22 2014, 22:59:56) >>> import setuptools >>> setuptools.version.__version__ ‘3.6’ I just can’t …

Total answers: 2