Skip to content

Commit b83e801

Browse files
committed
Reformat + added RSA to setup.py
1 parent 3465e86 commit b83e801

File tree

1 file changed

+44
-40
lines changed

1 file changed

+44
-40
lines changed

setup.py

Lines changed: 44 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -53,50 +53,54 @@ def read(fname):
5353

5454

5555
setup(
56-
name='iPOPO',
56+
name="iPOPO",
5757
version=__version__,
58-
license='Apache License 2.0',
59-
description='A service-oriented component model framework',
60-
long_description=read('README.rst'),
61-
author='Thomas Calmant',
62-
author_email='[email protected]',
63-
url='https://ipopo.readthedocs.io/',
58+
license="Apache License 2.0",
59+
description="A service-oriented component model framework",
60+
long_description=read("README.rst"),
61+
author="Thomas Calmant",
62+
author_email="[email protected]",
63+
url="https://ipopo.readthedocs.io/",
6464
packages=[
65-
'pelix',
66-
'pelix.http',
67-
'pelix.internals',
68-
'pelix.ipopo',
69-
'pelix.ipopo.handlers',
70-
'pelix.misc',
71-
'pelix.remote',
72-
'pelix.remote.discovery',
73-
'pelix.remote.transport',
74-
'pelix.services',
75-
'pelix.shell',
76-
'pelix.shell.completion',
65+
"pelix",
66+
"pelix.http",
67+
"pelix.internals",
68+
"pelix.ipopo",
69+
"pelix.ipopo.handlers",
70+
"pelix.misc",
71+
"pelix.remote",
72+
"pelix.remote.discovery",
73+
"pelix.remote.transport",
74+
"pelix.rsa",
75+
"pelix.rsa.providers",
76+
"pelix.rsa.providers.discovery",
77+
"pelix.rsa.providers.distribution",
78+
"pelix.rsa.topologymanagers",
79+
"pelix.services",
80+
"pelix.shell",
81+
"pelix.shell.completion",
7782
],
7883
classifiers=[
79-
'Development Status :: 5 - Production/Stable',
80-
'Environment :: Console',
81-
'Intended Audience :: Developers',
82-
'License :: OSI Approved :: Apache Software License',
83-
'Operating System :: OS Independent',
84-
'Programming Language :: Python :: 2.7',
85-
'Programming Language :: Python :: 3',
86-
'Programming Language :: Python :: 3.4',
87-
'Programming Language :: Python :: 3.5',
88-
'Programming Language :: Python :: 3.6',
89-
'Programming Language :: Python :: 3.7',
90-
'Topic :: Software Development :: Libraries :: Application Frameworks',
91-
],
92-
install_requires=[
93-
'jsonrpclib-pelix>=0.3.1'
84+
"Development Status :: 5 - Production/Stable",
85+
"Environment :: Console",
86+
"Intended Audience :: Developers",
87+
"License :: OSI Approved :: Apache Software License",
88+
"Operating System :: OS Independent",
89+
"Programming Language :: Python :: 2.7",
90+
"Programming Language :: Python :: 3",
91+
"Programming Language :: Python :: 3.4",
92+
"Programming Language :: Python :: 3.5",
93+
"Programming Language :: Python :: 3.6",
94+
"Programming Language :: Python :: 3.7",
95+
"Topic :: Software Development :: Libraries :: Application Frameworks",
9496
],
97+
install_requires=["jsonrpclib-pelix>=0.3.1"],
9598
extras_require={
96-
'Redis': ['redis>=2.10'],
97-
'ZooKeeper': ['kazoo>=2.4'],
98-
'MQTT': ['paho-mqtt>=1.1'],
99-
'XMPP': ['sleekxmpp>=1.3.1'],
100-
'zeroconf': ['zeroconf']
101-
}
99+
"Redis": ["redis>=2.10"],
100+
"ZooKeeper": ["kazoo>=2.4"],
101+
"MQTT": ["paho-mqtt>=1.3"],
102+
"XMPP": ["sleekxmpp>=1.3.1"],
103+
"zeroconf": ["zeroconf==0.19"],
104+
"RSA": ["python-etcd>=0.4.5", "osgiservicebridge>=1.4.1"],
105+
},
102106
)

0 commit comments

Comments
 (0)