|
|
|
|
|
by mixmastamyk
1262 days ago
|
|
Keep it simple and fashion-proof. Been using setup.py for a one-script package for one or two? decades: from setuptools import setup
setup(
name = 'foobar',
scripts = ['foo'], # install a script from current fldr
# ...
)
A few years ago I had to start using twine to register and upload it to pypi. |
|
Better would be a basic pyproject.toml file along the lines of the following:
See: https://setuptools.pypa.io/en/latest/userguide/quickstart.ht...