Created
October 25, 2020 06:08
-
-
Save rhoboro/c7d028fd20c4bb6591ece39b3fbe7949 to your computer and use it in GitHub Desktop.
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="[email protected]", | |
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