-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
58 lines (52 loc) · 1.76 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
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding='utf-8') as f:
long_description = f.read()
setup(
name="eat",
version="1.6",
description="EHT Analysis Toolkit",
long_description=long_description,
url="https://github.com/sao-eht/eat",
author="Lindy Blackburn",
author_email="[email protected]",
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Programming Language :: Python",
],
keywords="astronomy analysis",
packages=find_packages(exclude=["doc*", "test*"]),
package_data={'eat': ["data/*.csv"]},
scripts=["bin/addflag.py",
"bin/adjustres.py",
"bin/alistadhoc",
"bin/alma_adhoc",
"bin/alma_delayoffs",
"bin/alma_fixsqrt2",
"bin/alma_pcal",
"bin/alma_sbdmbd",
"bin/antab2sefd",
"bin/cal_apriori_pang_uvfits.py",
"bin/cal_polcal_gains_uvfits.py",
"bin/caluvfits.py",
"bin/closecf",
"bin/fitsidx",
"bin/fix_lopcal",
"bin/fplotpdf",
"bin/generate_polcal_table.py",
"bin/hops2uvfits.py",
"bin/import_uvfits.py",
"bin/mksnr",
"bin/noauto",
"bin/ovex2codes",
"bin/apriorical",
"bin/printalist",
"bin/runall.py",
"bin/uv_comb.py"]
)