mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-28 11:18:11 +00:00
Merge branch 'asyncio' of github.com:GNS3/gns3-server into asyncio
This commit is contained in:
commit
0afea48e63
16
setup.py
16
setup.py
@ -33,6 +33,15 @@ class PyTest(TestCommand):
|
|||||||
errcode = pytest.main(self.test_args)
|
errcode = pytest.main(self.test_args)
|
||||||
sys.exit(errcode)
|
sys.exit(errcode)
|
||||||
|
|
||||||
|
|
||||||
|
dependencies = ["aiohttp==0.13.1",
|
||||||
|
"jsonschema==2.4.0",
|
||||||
|
"apache-libcloud==0.16.0",
|
||||||
|
"requests==2.5.0"]
|
||||||
|
|
||||||
|
if sys.version_info == (3, 3):
|
||||||
|
dependencies.append("asyncio==3.4.2")
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="gns3-server",
|
name="gns3-server",
|
||||||
version=__import__("gns3server").__version__,
|
version=__import__("gns3server").__version__,
|
||||||
@ -42,12 +51,7 @@ setup(
|
|||||||
cmdclass={"test": PyTest},
|
cmdclass={"test": PyTest},
|
||||||
description="GNS3 server",
|
description="GNS3 server",
|
||||||
long_description=open("README.rst", "r").read(),
|
long_description=open("README.rst", "r").read(),
|
||||||
install_requires=[
|
install_requires=dependencies,
|
||||||
"aiohttp",
|
|
||||||
"jsonschema>=2.3.0",
|
|
||||||
"apache-libcloud>=0.14.1",
|
|
||||||
"requests",
|
|
||||||
],
|
|
||||||
entry_points={
|
entry_points={
|
||||||
"console_scripts": [
|
"console_scripts": [
|
||||||
"gns3server = gns3server.main:main",
|
"gns3server = gns3server.main:main",
|
||||||
|
Loading…
Reference in New Issue
Block a user