Skip to content

Commit

Permalink
update setup files
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed May 28, 2018
1 parent 2c9a91b commit 3054e4b
Showing 1 changed file with 31 additions and 34 deletions.
65 changes: 31 additions & 34 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import dirname, realpath, exists
from setuptools import setup, find_packages
import sys
Expand All @@ -14,35 +12,34 @@
sys.path.insert(0, realpath(dirname(__file__))+"/"+name)
from _version import version

if __name__ == "__main__":
setup(
name=name,
author=author,
author_email='dev@craban.de',
url='https://github.com/RI-imaging/qpformat',
version=version,
packages=find_packages(),
package_dir={name: name},
license="MIT",
description=description,
long_description=open('README.rst').read() if exists('README.rst') else '',
install_requires=["nrefocus>=0.1.5",
"numpy>=1.9.0",
"qpimage",
"scikit-image>=0.11.0",
"scipy>=0.18.0",
],
setup_requires=['pytest-runner'],
tests_require=["pytest"],
python_requires='>=3.5, <4',
keywords=["data file format",
"digital holographic microscopy",
"quantitative phase imaging",
],
classifiers= [
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research'
],
platforms=['ALL'],
)
setup(
name=name,
author=author,
author_email='dev@craban.de',
url='https://github.com/RI-imaging/qpformat',
version=version,
packages=find_packages(),
package_dir={name: name},
license="MIT",
description=description,
long_description=open('README.rst').read() if exists('README.rst') else '',
install_requires=["nrefocus>=0.1.5",
"numpy>=1.9.0",
"qpimage",
"scikit-image>=0.11.0",
"scipy>=0.18.0",
],
setup_requires=['pytest-runner'],
tests_require=["pytest"],
python_requires='>=3.5, <4',
keywords=["data file format",
"digital holographic microscopy",
"quantitative phase imaging",
],
classifiers= [
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research'
],
platforms=['ALL'],
)

0 comments on commit 3054e4b

Please sign in to comment.