Created
January 25, 2017 09:07
-
-
Save kurozumi/7cc8b7903427e372db94efc063ea085c to your computer and use it in GitHub Desktop.
【Python】自作パッケージをpipで管理
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 distutils.core import setup | |
setup(name='package', | |
version='1.0', | |
description='My Package', | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment