DEV Community

Discussion on: Setup your python package within seconds

Collapse
 
thomasborgen profile image
Borgen

Sorry about this, but any new or old python developer should not use this.

Python devs in 2022 should use poetry.

poetry new my_awesome_package does what you describe. But more than that it's also a dependency resolver and manager, in addition to publising to pypi with poetry publish --build. It's also peer reviewed and the closest thing we have to a standard way to manage your package.