Skip to content

Commit

Permalink
Reformat + added RSA to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tcalmant committed Aug 19, 2018
1 parent 3465e86 commit b83e801
Showing 1 changed file with 44 additions and 40 deletions.
84 changes: 44 additions & 40 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
},
)

0 comments on commit b83e801

Please sign in to comment.