Skip to content
Snippets Groups Projects
Commit b1edb710 authored by Martin Reinecke's avatar Martin Reinecke
Browse files

add setup.py

parent 65ac6f6c
No related branches found
No related tags found
No related merge requests found
setup.py 0 → 100644
from setuptools import setup
exec(open('starblade/version.py').read())
setup(name="starblade",
version=__version__,
author="Jakob Knollmueller",
author_email="jakob@mpa-garching.mpg.de",
description="",
url="https://gitlab.mpcdf.mpg.de/ift/PointSourceSeparator",
packages=["starblade"],
zip_safe=True,
dependency_links = [],
install_requires = ["nifty4>=4.0","scipy>=0.17"],
license="GPLv3",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 "
"or later (GPLv3+)"
],)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment