Skip to content

Instantly share code, notes, and snippets.

@aveek22
Last active January 5, 2021 20:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aveek22/4cd863ab1ce57d74dec5c4a1d4361bf6 to your computer and use it in GitHub Desktop.
Save aveek22/4cd863ab1ce57d74dec5c4a1d4361bf6 to your computer and use it in GitHub Desktop.
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="quicksample", # This is the name of the package
version="0.0.1", # The initial release version
author="Aveek Das", # Full name of the author
description="Quicksample Test Package for SQLShack Demo",
long_description=long_description, # Long description read from the the readme file
long_description_content_type="text/markdown",
packages=setuptools.find_packages(), # List of all python modules to be installed
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
], # Information to filter the project on PyPi website
python_requires='>=3.6', # Minimum version requirement of the package
py_modules=["quicksample"], # Name of the python package
package_dir={'':'quicksample/src'}, # Directory of the source code of the package
install_requires=[] # Install other dependencies if any
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment