forked from openPMD/openPMD-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
79 lines (73 loc) · 2.88 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
# Get the long description
# If possible, use pypandoc to convert the README from Markdown
# to reStructuredText, as this is the only supported format on PyPI
try:
import pypandoc
long_description = pypandoc.convert( './README.md', 'rst')
except (ImportError, RuntimeError):
long_description = open('./README.md').read()
# Get the package requirements from the requirements.txt file
with open('./requirements.txt') as f:
install_requires = [line.strip('\n') for line in f.readlines()]
# Read the version number, by executing the file opmd_viewer/__version__.py
# This defines the variable __version__
with open('./opmd_viewer/__version__.py') as f:
exec( f.read() )
# Define a custom class to run the py.test with `python setup.py test`
class PyTest(TestCommand):
def run_tests(self):
import pytest
errcode = pytest.main([])
sys.exit(errcode)
# Try to compile the Cython function
try:
import numpy
include_dirs = [numpy.get_include()]
from Cython.Build import cythonize
ext_modules = cythonize(
"opmd_viewer/openpmd_timeseries/cython_function.pyx")
except ImportError:
# If the compilation fails, still install the package in a robust way
include_dirs = []
ext_modules = []
# Main setup command
setup(name='openPMD-viewer',
version=__version__,
description='Visualization tools for openPMD files',
long_description=long_description,
url='https://github.com/openPMD/openPMD-viewer.git',
maintainer='Remi Lehe',
maintainer_email='[email protected]',
license='BSD-3-Clause-LBNL',
packages=find_packages('./'),
package_data={'opmd_viewer': ['notebook_starter/*.ipynb']},
scripts=['opmd_viewer/notebook_starter/openPMD_notebook'],
tests_require=['pytest', 'jupyter'],
ext_modules=ext_modules,
include_dirs=include_dirs,
install_requires=install_requires,
extras_require = {
'GUI': ["ipywidgets", "matplotlib", "cython"],
'plot': ["matplotlib", "cython"],
'tutorials': ["ipywidgets", "matplotlib", "wget", "cython"]
},
cmdclass={'test': PyTest},
platforms='any',
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Database :: Front-Ends',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'],
)