-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
25 lines (24 loc) · 841 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup, find_packages
setup(
name='pyfase',
version='1.0.5',
url='https://github.com/jomorais/pyfase',
license='GPLv3',
author='Joaci Morais',
author_email='[email protected]',
description='A Fast-Asynchronous-microService-Environment based on ZeroMQ.',
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",
],
)