forked from achael/eht-imaging
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·60 lines (53 loc) · 2.36 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
if __name__ == "__main__":
setup(name="ehtim",
version = "1.2.2",
author = "Andrew Chael",
author_email = "[email protected]",
description = "Imaging, analysis, and simulation software for radio interferometry",
long_description=read('README.rst'),
license = "GPLv3",
keywords = "imaging astronomy EHT polarimetry",
url = "https://github.com/achael/eht-imaging",
download_url = "https://github.com/achael/eht-imaging/archive/v1.2.2.tar.gz",
packages = ["ehtim",
"scripts",
"ehtim.calibrating",
"ehtim.imaging",
"ehtim.io",
"ehtim.observing",
"ehtim.plotting",
"ehtim.features",
"ehtim.scattering",
"ehtim.statistics"],
scripts=["scripts/calibrate.py",
"scripts/cleanup.py",
"scripts/cli_blur_comp.py",
"scripts/gendata.py",
"scripts/imaging.py",
"scripts/imgsum.py",
"scripts/verify_gradients.py"],
install_requires=["numpy",
"scipy",
"astropy",
"matplotlib",
"ephem",
"h5py",
"pandas",
# "pynfft", # optional (but highly recommended)
# "networkx", # optional, only needed if using image_agreements()
# "requests", # optional; only needed if using dynamical imaging
# "scikit-image", #optional; only needed for hough transforms
"future"],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 2.7',
],
)