Skip to content
Snippets Groups Projects

make jass installable via pip directly

Merged Hervé MENAGER requested to merge hmenager-upgrade-deps-patch-98128 into upgrade-deps
1 file
+ 13
2
Compare changes
  • Side-by-side
  • Inline
+ 13
2
@@ -10,7 +10,18 @@ SETUP_DIR = os.path.dirname(__file__)
README = os.path.join(SETUP_DIR, 'README.md')
readme = open(README).read()
REQUIRES = ["connexion", "python_dateutil", "setuptools", "pandas", "tables", "scipy", "matplotlib", "celery", "h5py"]
REQUIRES = [
"connexion[swagger-ui] @ git+https://github.com/hmenager/connexion.git@master#egg=connexion[swagger-ui]",
"aiohttp",
"python_dateutil",
"setuptools",
"numpy",
"pandas",
"tables",
"scipy",
"matplotlib",
"celery",
]
setup(
name=NAME,
@@ -46,4 +57,4 @@ setup(
'jass=jass.__main__:main',
]
}
)
\ No newline at end of file
)
Loading