Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

pip package dynamic setup.py example

import setuptools

with open("README.md", "r", encoding="utf-8") as fh:
    long_description = fh.read()

setuptools.setup(
    name="example-package-YOUR-USERNAME-HERE",
    version="0.0.1",
    author="Example Author",
    author_email="author@example.com",
    description="A small example package",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/pypa/sampleproject",
    project_urls={
        "Bug Tracker": "https://github.com/pypa/sampleproject/issues",
    },
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    package_dir={"": "src"},
    packages=setuptools.find_packages(where="src"),
    python_requires=">=3.6",
)
Comment

PREVIOUS NEXT
Code Example
Python :: NxN Array 
Python :: python break string to sections 
Python :: Customize tick spacing 
Python :: code converter html 
Python :: django save object 
Python :: how to add field to django forms createview 
Python :: Compute p-value 
Python :: NLP text summarization with LSA 
Python :: rickroll on input IN PYTHON 
Python :: BMI CALCULATOR CODE IN PYTHON 
Python :: sorting list of strings by length python 
Python :: print two values using f string 
Python :: python store salt in csv 
Python :: Odoo Module ACL(Access Controls List) 
Python :: change legend facecolor 
Python :: extending the existing user model 
Python :: reemplazar un caracter de un string 
Python :: 100 days of python 
Python :: create empty dataframe and concat 
Python :: run thread that inputs into queue and other threads process that python 
Python :: np.column_sytaxck 
Python :: kivy bind when text changes 
Python :: python 5 minimal values from array 
Python :: re.add python 
Python :: gui apps 
Python :: list of letter in word python 
Python :: pop function second argument in python 
Python :: how to open a different version of python on my macc 
Python :: django BruteBuster error failed attempts 
Python :: somma array python 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =