Skip to content

Instantly share code, notes, and snippets.

View TahirJalilov's full-sized avatar

Tahir Jalilov TahirJalilov

View GitHub Profile
@TahirJalilov
TahirJalilov / PyPi upload guide.md
Created January 27, 2021 15:00 — forked from kevinkosterr/PyPi upload guide.md
Guide to uploading a package to PyPi

Uploading your package to a PyPi server

Creating a setup.py file

Create a setup.py file, PyCharm has a tool for this. Tools -> create setup.py a basic setup.py file looks like this:

from setuptools import setup

with open('README.md') as readme: