-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
44 additions
and
40 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,50 +53,54 @@ def read(fname): | |
|
||
|
||
setup( | ||
name='iPOPO', | ||
name="iPOPO", | ||
version=__version__, | ||
license='Apache License 2.0', | ||
description='A service-oriented component model framework', | ||
long_description=read('README.rst'), | ||
author='Thomas Calmant', | ||
author_email='[email protected]', | ||
url='https://ipopo.readthedocs.io/', | ||
license="Apache License 2.0", | ||
description="A service-oriented component model framework", | ||
long_description=read("README.rst"), | ||
author="Thomas Calmant", | ||
author_email="[email protected]", | ||
url="https://ipopo.readthedocs.io/", | ||
packages=[ | ||
'pelix', | ||
'pelix.http', | ||
'pelix.internals', | ||
'pelix.ipopo', | ||
'pelix.ipopo.handlers', | ||
'pelix.misc', | ||
'pelix.remote', | ||
'pelix.remote.discovery', | ||
'pelix.remote.transport', | ||
'pelix.services', | ||
'pelix.shell', | ||
'pelix.shell.completion', | ||
"pelix", | ||
"pelix.http", | ||
"pelix.internals", | ||
"pelix.ipopo", | ||
"pelix.ipopo.handlers", | ||
"pelix.misc", | ||
"pelix.remote", | ||
"pelix.remote.discovery", | ||
"pelix.remote.transport", | ||
"pelix.rsa", | ||
"pelix.rsa.providers", | ||
"pelix.rsa.providers.discovery", | ||
"pelix.rsa.providers.distribution", | ||
"pelix.rsa.topologymanagers", | ||
"pelix.services", | ||
"pelix.shell", | ||
"pelix.shell.completion", | ||
], | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Console', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Topic :: Software Development :: Libraries :: Application Frameworks', | ||
], | ||
install_requires=[ | ||
'jsonrpclib-pelix>=0.3.1' | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.4", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Topic :: Software Development :: Libraries :: Application Frameworks", | ||
], | ||
install_requires=["jsonrpclib-pelix>=0.3.1"], | ||
extras_require={ | ||
'Redis': ['redis>=2.10'], | ||
'ZooKeeper': ['kazoo>=2.4'], | ||
'MQTT': ['paho-mqtt>=1.1'], | ||
'XMPP': ['sleekxmpp>=1.3.1'], | ||
'zeroconf': ['zeroconf'] | ||
} | ||
"Redis": ["redis>=2.10"], | ||
"ZooKeeper": ["kazoo>=2.4"], | ||
"MQTT": ["paho-mqtt>=1.3"], | ||
"XMPP": ["sleekxmpp>=1.3.1"], | ||
"zeroconf": ["zeroconf==0.19"], | ||
"RSA": ["python-etcd>=0.4.5", "osgiservicebridge>=1.4.1"], | ||
}, | ||
) |