From ec180e4799888627d192678ff02297c738980405 Mon Sep 17 00:00:00 2001 From: jomorais Date: Wed, 22 Mar 2017 10:21:08 -0400 Subject: [PATCH] rename fase module to pyfase --- examples/core.py => core.py | 2 +- examples/cafe/cafe.py | 2 +- examples/cafe/client.py | 2 +- examples/pingpong/ping.py | 2 +- examples/pingpong/pong.py | 2 +- fase.py => pyfase.py | 0 setup.py | 19 ++++++++++++++++--- 7 files changed, 21 insertions(+), 8 deletions(-) rename examples/core.py => core.py (92%) rename fase.py => pyfase.py (100%) diff --git a/examples/core.py b/core.py similarity index 92% rename from examples/core.py rename to core.py index 3e9cfba..b10a373 100644 --- a/examples/core.py +++ b/core.py @@ -1,7 +1,7 @@ __author__ = 'jmorais' try: - from fase import Fase + from pyfase import Fase except Exception as e: print('require module exception: %s' % e) exit(0) diff --git a/examples/cafe/cafe.py b/examples/cafe/cafe.py index 799a97b..5f13000 100644 --- a/examples/cafe/cafe.py +++ b/examples/cafe/cafe.py @@ -3,7 +3,7 @@ try: import os - from fase import MicroService + from pyfase import MicroService except Exception as e: print('require module exception: %s' % e) exit(0) diff --git a/examples/cafe/client.py b/examples/cafe/client.py index a7f71fd..861d8cb 100644 --- a/examples/cafe/client.py +++ b/examples/cafe/client.py @@ -3,7 +3,7 @@ try: import os - from fase import MicroService + from pyfase import MicroService except Exception as e: print('require module exception: %s' % e) exit(0) diff --git a/examples/pingpong/ping.py b/examples/pingpong/ping.py index 3834889..d03f95e 100644 --- a/examples/pingpong/ping.py +++ b/examples/pingpong/ping.py @@ -3,7 +3,7 @@ try: import time - from fase import MicroService + from pyfase import MicroService except Exception as e: print('require module exception: %s' % e) exit(0) diff --git a/examples/pingpong/pong.py b/examples/pingpong/pong.py index a56c5e1..8d9e566 100644 --- a/examples/pingpong/pong.py +++ b/examples/pingpong/pong.py @@ -3,7 +3,7 @@ try: import time - from fase import MicroService + from pyfase import MicroService except Exception as e: print('require module exception: %s' % e) exit(0) diff --git a/fase.py b/pyfase.py similarity index 100% rename from fase.py rename to pyfase.py diff --git a/setup.py b/setup.py index 8097d07..2121705 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,25 @@ -from setuptools import setup +from setuptools import setup, find_packages setup( name='pyfase', - version='1.0.0', + version='1.0.1', url='https://github.com/jomorais/pyfase', license='GPLv3', author='Joaci Morais', author_email='joaci.morais@gmail.com', description='A Fast-Asynchronous-microService-Environment based on ZeroMQ.', - install_requires=['zmq'] + packages=find_packages(), + py_modules=['pyfase'], + platforms='any', + install_requires=['zmq'], + classifiers=[ + "Programming Language :: Python", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: Implementation", + "Topic :: Software Development :: Libraries", + "Topic :: System :: Distributed Computing", + "Topic :: System :: Networking", + ], )