DEV Community

Cover image for Publish a Python Package (Part 2)
datatoinfinity
datatoinfinity

Posted on

Publish a Python Package (Part 2)

Configure Setup.py


from setuptools import setup, find_packages
setup(
    name="datatoinfinity-hello-package",
    version="0.1",
    packages=find_packages(),
    install_requires=[
        #Add dependencies here
    ]
) 

Note:- Remember that the name should be same as while you create token on pypi.

python setup.py sdist bdist wheel

It builds distribution packages of your project so others can install it

Top comments (0)