python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Why does `python setup.py sdist` copy the entire directory into the dist file?
I am perplexed why this setup.py file
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst', 'r', encoding='utf-8') as file:
readme = file.read()
setup(
na...
Freiburgermsu
Votes: 0
Answers: 1
How to create a setuptools sdist .tar.gz package from a Conda project?
I have a PyTorch training project where dependencies are managed using conda. I need to package my project as a setuptools software distribution (sdist) in a .tar.gz file so that I can run it as a cus...
urig
Votes: 0
Answers: 1