Last active
January 1, 2018 11:07
-
-
Save puhitaku/727960723fdd90773e8b47effe121ee5 to your computer and use it in GitHub Desktop.
>>> import pndcat
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
# Put this file in subdirectory "pndcat" | |
pndcat = 'は?' | |
print(pndcat) |
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, find_packages | |
__version__ = '0.0.0' | |
__author__ = 'pndcat' | |
__author_email__ = '[email protected]' | |
__license__ = 'Public Domain' | |
__classifiers__ = ( | |
'License :: Public Domain', | |
'Operating System :: OS Independent', | |
'Programming Language :: Python', | |
'Programming Language :: Python :: 3.6') | |
setup( | |
name='pndcat', | |
version=__version__, | |
author=__author__, | |
author_email=__author_email__, | |
description='pndcat', | |
long_description='pndcat', | |
classifiers=__classifiers__, | |
packages=find_packages(), | |
license=__license__) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment