Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python console install package

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="<authorname@templatepackage.com>",

    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',

)
Comment

PREVIOUS NEXT
Code Example
Python :: Python Tkinter TopLevel Widget 
Python :: python data type conversion 
Python :: python warnings as error 
Python :: anaconda python 3.6 download 
Python :: python print() end 
Python :: How to show variable in Jupyter 
Python :: change date format to yyyy mm dd in django template datepicker 
Python :: scikit learn library in python 
Python :: matplotlib.pyplot 
Python :: sklean tfidf 
Python :: dft numpz phase 
Python :: close all tables python 
Python :: pandas series add word to every item in series 
Python :: login page in python flask with database 
Python :: telegram.ext module python 
Python :: symmetrical sum 
Python :: how to make a random question generator in python 
Python :: find occerences in list python 
Python :: print type on each cell in column pandas 
Python :: megre pandas in dictionary 
Python :: python loop nest shorthand 
Python :: 3d plot 
Python :: python change version 
Python :: DateEntry tkinter 
Python :: convert numpy array to tfrecord and back 
Python :: spacy shortforms explanation 
Python :: django error displaying images page not found 
Python :: binary search iterative python 
Python :: unique file name in django 
Python :: use rclone on colab 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =