gistpy is a sample module for trying to install from gist.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def func(): | |
print("Success!!") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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