Skip to content

Instantly share code, notes, and snippets.

@brianz
Created September 15, 2016 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brianz/eab945699d396a5656e355e8f1264562 to your computer and use it in GitHub Desktop.
Save brianz/eab945699d396a5656e355e8f1264562 to your computer and use it in GitHub Desktop.
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='brianz@gmail.com',
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