, 5 tweets, 2 min read
My Authors
Read all threads
If you don't know what setup.cfg is, it's the simplest, easiest most bulletproof way to make Python 3 packages.

Here is how you do it.
1 - Create a setup.py file containing a single line:

import setuptools; setuptools.setup()

It should be in the same dir as your importable lib. Not inside, not in a parent dir. Next to it.

Let's say your importable lib is called "cool_package". Now...
2 - Create also a setup.cfg containing your metadata. E.G:

[metadata]
name = cool_package
version = 0.0.1
description = "Cool"
long_description = "Super cool"

[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
requests
flask
#etc
3 - There is no 3, congrats you have a package.

You can now "pip install" it directly from the local dir or a remote git repository, build a wheel, upload it to pypi... Enjoy!

Yes, it was that easy.

Here is the doc for all the options available:

setuptools.readthedocs.io/en/latest/setu…
Example of a project using it: github.com/jaraco/path.py
Missing some Tweet in this thread? You can try to force a refresh.

Enjoying this thread?

Keep Current with Bite Code

Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

Twitter may remove this content at anytime, convert it as a PDF, save and print for later use!

Try unrolling a thread yourself!

how to unroll video

1) Follow Thread Reader App on Twitter so you can easily mention us!

2) Go to a Twitter thread (series of Tweets by the same owner) and mention us with a keyword "unroll" @threadreaderapp unroll

You can practice here first or read more on our help page!

Follow Us on Twitter!

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just three indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3.00/month or $30.00/year) and get exclusive features!

Become Premium

Too expensive? Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal Become our Patreon

Thank you for your support!