diff --git a/setup.py b/setup.py index 0bc39b51..860b810e 100644 --- a/setup.py +++ b/setup.py @@ -5,13 +5,12 @@ from setuptools import find_packages import pip -VERSION = '0.0.1' +VERSION = '1.0.0' config = { 'version': VERSION, 'description': 'TNS: synthesis of artificial neurons using their topological profiles package', 'author': 'Lida Kanari', - 'url': 'https://bitbucket.org/bbp_lida/morphsynthesis', 'author_email': 'lida.kanari@epfl.ch', 'install_requires': [ 'matplotlib>=1.3.1', @@ -21,10 +20,10 @@ 'enum34>=1.0.4', 'scipy>=0.13.3', 'numpy>=1.8.0' + 'morphio<=2.0.0' ], 'dependency_links': [ 'git+ssh://bbpcode.epfl.ch/molecularsystems/TMD#egg=tmd-1.0.0', - 'git+ssh://git@github.com/bluebrain/morphio#egg=morphio-0.9.4', ], 'extras_require': {}, 'packages': find_packages(), @@ -34,5 +33,4 @@ 'include_package_data': True, } - setup(**config)