简体   繁体   中英

Included setup.py in bdist generated library

I am trying to generate a simple Python library using the following command:

```

python setup.py bdist_dumb ```

So it will generate a tar.gz file with the contents specified in the setup.py script.

Once it is generated, I try to install ot using pip install command, but I am getting an error referrinf to the missing file setup.py.

I have specified to include such file in a MANIFEST.in file. But when I attempt to build the file, it is not included in my package.

As a reference I am checking pyspark package, but I can't find the place where the setup.py file is specified to be included.

Can anyone give me a hint for including this file in order to install the tar.gz library?

Kind regards,

You're asking a wrong question for a wrong problem. You don't need to include setup.py because you don't need to build bdist_dumb . Dumb distributions cannot be installed with pip .

If you want a pip-installable distribution build a source distribution, an egg or a wheel:

python setup.py sdist
python setup.py bdist_egg

pip install wheel
python setup.py bdist_wheel

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM