Created
September 15, 2016 20:49
-
-
Save brianz/eab945699d396a5656e355e8f1264562 to your computer and use it in GitHub Desktop.
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 | |
setup( | |
name = 'calculator_service', | |
packages=find_packages(), | |
version = '1.0', | |
description = 'Example application with Servant', | |
author='Brian Zambrano', | |
author_email='[email protected]', | |
classifiers=[ | |
'Programming Language :: Python', | |
'Programming Language :: Python :: 2', | |
'License :: OSI Approved :: GNU General Public License (GPL)', | |
'Operating System :: OS Independent', | |
'Development Status :: 1 - Planning', | |
'Environment :: Console', | |
'Intended Audience :: Developers', | |
'Topic :: System :: Distributed Computing', | |
] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment