Re: [Distutils] How to install examples files?

2018-04-10 Thread Giampaolo Rodola'
That’s likely because dndexample1.py is not listed in MANIFEST.in file. On Mon, 9 Apr 2018 at 10:10, Michael Schwager wrote: > Hello, > I am trying to install a module with a package and also an examples > directory. How do I get my examples installed on users' machines into

[Distutils] PyPI/Warehouse (short) weekly report: Progress towards launch milestone

2018-04-10 Thread Laura Hampton
(This week's report will be a brief update, written by Laura Hampton. Sumana will return later this week.) We are continuing to approach the Launch: Redirect pypi.python.org to pypi.org milestone[1]. The redirect is scheduled to happen on Monday, April 16th. The Warehouse team has been

Re: [Distutils] How to install examples files?

2018-04-10 Thread Michael Schwager
It looks like the following setup.py will do what I want, but it won't install the examples when I use --target: from setuptools import setup, find_packages from codecs import open from os import path with open(path.join('.', 'README.md'), encoding='utf-8') as f: long_description = f.read()