with open("README.md","r") as fh: long_description = fh.read()
setuptools.setup( name = "Emir-Liu-packet", #distribution name of package version = "0.0.1", author = "Emir-Liu", author_email = "egliuym@gmail.com", description = "my first test packet", # a short,one-sentence summary long_description = long_description, # the long description is loaded from README.md long_description_content_type = "text/markdown", url = "https://emir-liu.github.io/", # URL of the homepage of the project packages = setuptools.find_packages(), # a list of all python import packages that should be included in the destribution package classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], # some additional metadata about package ,at least license ,operating system and verson of python python_requires = '>=3.0', )