forked from ehpor/hcipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (61 loc) · 1.51 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
from setuptools import setup, find_packages
# read the contents of the README.md file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setup(
name='hcipy',
use_scm_version=True,
description='A framework for performing optical propagation simulations, meant for high contrast imaging, in Python.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ehpor/hcipy/',
author='Emiel Por',
author_email='[email protected]',
packages=find_packages(),
package_data={'hcipy': ['data/*']},
setup_requires=[
'setuptools_scm'],
install_requires=[
"numpy",
"scipy",
"matplotlib>=2.0.0",
"Pillow",
"pyyaml",
"astropy",
"imageio",
"xxhash",
"numexpr",
"asdf"],
extras_require={
"dev": [
"pytest",
"codecov",
"coverage",
"mpmath",
"dill"],
"doc": [
"numpydoc",
"sphinx_rtd_theme",
"nbsphinx",
"jupyter_client",
"ipykernel",
"poppy",
"nbclient",
"nbformat",
"nbconvert",
"sphinx-automodapi",
"progressbar2"]},
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Astronomy"],
license_file="LICENSE"
)