Skip to content

Instantly share code, notes, and snippets.

@rhoboro
Created October 25, 2020 06:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rhoboro/c7d028fd20c4bb6591ece39b3fbe7949 to your computer and use it in GitHub Desktop.
Save rhoboro/c7d028fd20c4bb6591ece39b3fbe7949 to your computer and use it in GitHub Desktop.
gistpy is a sample module for trying to install from gist.
def func():
print("Success!!")
from setuptools import setup, find_packages
def main():
setup(
name="gistpy",
version="1.0.0",
license="Apache License 2.0",
author="rhoboro",
author_email="rhoboro@gmail.com",
description="gistpy is a sample module for trying to install from gist.",
long_description_content_type="text/markdown",
py_modules=["gistpy"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment