-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (48 loc) · 1.69 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (48 loc) · 1.69 KB
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='fours',
version='0.1.0',
description='Data post-processing for high-contrast imaging with the 4S '
'Algorithm.',
url='https://github.com/markusbonse/fours.git',
author='Markus Bonse',
author_email="mbonse@phys.ethz.ch",
license="MIT License",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'seaborn',
'numpy',
'tqdm',
'photutils',
'matplotlib',
'scikit-learn',
'scikit-image',
'torch',
'h5py',
'astropy',
'tensorboard',
'pandas'],
extras_require={
"dev": ["furo>=2022.12.7",
"sphinx_rtd_theme==1.1.1",
"sphinx>=2.1,<6",
"myst-parser~=0.18.1",
"nbsphinx>=0.8.9",
"sphinx-copybutton~=0.5.1",
"sphinx-gallery<=0.10",
"twine~=4.0.2",
# needed for syntax highlighting in jupyter notebooks
"IPython~=8.8.0",
"ipywidgets~=8.0.4",
# spell checking in jupyter notebooks
"jupyter_contrib_nbextensions~=0.7.0",
"sphinx-autodoc-typehints>1.6"],
"plotting": ["seaborn~=0.12.1",
"matplotlib>=3.4.3",
"bokeh>=3.0.3"],
},
packages=find_packages(include=['fours', 'fours.*']),
zip_safe=False
)