Created
July 30, 2020 21:37
-
-
Save ThatXliner/e65f0b6a16f97ff20f2fbbf49416d307 to your computer and use it in GitHub Desktop.
A minimal example of a setup.py
This file contains hidden or 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 | |
setup( | |
name="my_package", # Or some other name that isn't taken on pypi.org | |
version="0.1.0", # Or whatever versioning scheme you prefer | |
description='A description', | |
author='John Doe', | |
author_email='[email protected]', | |
packages=["package_folder"], | |
license='MIT', # Or your license | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment