Skip to content

Commit

Permalink
rename fase module to pyfase
Browse files Browse the repository at this point in the history
  • Loading branch information
jomorais committed Mar 22, 2017
1 parent 6ee0dab commit ec180e4
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/core.py → core.py
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion examples/cafe/cafe.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion examples/cafe/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion examples/pingpong/ping.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion examples/pingpong/pong.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
File renamed without changes.
19 changes: 16 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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='[email protected]',
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",
],
)

0 comments on commit ec180e4

Please sign in to comment.