-
Notifications
You must be signed in to change notification settings - Fork 499
/
Copy pathsetup.py
executable file
·61 lines (54 loc) · 2.3 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
import os
from setuptools import setup
#read
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
if __name__ == "__main__":
setup(name="ehtim",
version = "1.2.10",
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.9.tar.gz",
packages = ["ehtim",
"scripts",
"ehtim.calibrating",
"ehtim.imaging",
"ehtim.io",
"ehtim.modeling",
"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"],
install_requires=["numpy>=1.24", #,<2.0",
"scipy>=1.9.3", #,<1.14.0"
"astropy>=5.0.4",
"matplotlib>=3.7.3",
"skyfield",
"h5py",
"pandas",
"requests",
"future",
"networkx",
# "pynfft; platform_system!='Darwin' or platform_machine!='arm64'", # now must install manually
"paramsurvey"
],
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',
],
)