Answers for "python setup.py"

2

python setup.py install

# This to install it via pip
python -m pip install --upgrade setuptools

# Here is what setup.py might look like:
import setuptools

with open("README.md", "r") as fh:

    long_description = fh.read()

setuptools.setup(

    name="<template-package-username>", # Replace with your username

    version="1.0.0",

    author="<authorname>",

    author_email="<[email protected]>",

    description="<Template Setup.py package>",

    long_description=long_description,

    long_description_content_type="text/markdown",

    url="<https://github.com/authorname/templatepackage>",

    packages=setuptools.find_packages(),

    classifiers=[

        "Programming Language :: Python :: 3",

        "License :: OSI Approved :: MIT License",

        "Operating System :: OS Independent",

    ],

    python_requires='>=3.6',

)
Posted by: Guest on July-23-2020
7

how to make python package

# This is too much for a grepper answer, so here is a link to the tutorial:
# https://towardsdatascience.com/how-to-build-your-first-python-package-6a00b02635c9
Posted by: Guest on December-04-2020
2

pypi release

python3 setup.py sdist bdist_wheel
twine upload dist/*
Posted by: Guest on August-22-2020
2

create python package

python3 setup.py sdist bdist_wheel
Posted by: Guest on February-13-2020

Python Answers by Framework

Browse Popular Code Answers by Language