pypa / packaging-problems

An issue tracker for the problems in packaging
151 stars 35 forks source link

Trouble following packaging libraries tutorial #285

Open Suprith1992 opened 5 years ago

Suprith1992 commented 5 years ago
  1. What is your operating system and version? Windows 10

  2. What is your Python version?

    Python 3.7.2.

  3. What version of pip do you have?

    pip 10.0.1.

  4. Could you describe your issue in as much detail as possible?

followed the steps provided in https://packaging.python.org/tutorials/packaging-projects/

After running below step, dist/ is not getting created. python3 setup.py sdist bdist_wheel (Have run this command from the same directory where setup.py is located)

No any errors occurs , kindly help

Xrayez commented 5 years ago

Windows 10, Python 3.6.4, pip 19.3.

No errors and no output as well, but then I added this to setuptools.setup and it generated distribution archives successfully (see relevant answer on StackOverflow):


setuptools.setup(
    # ...
    setup_requires=["wheel"],
    # ...
)