forked from lsst/rubin_sim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 924 Bytes
/
setup.py
File metadata and controls
35 lines (31 loc) · 924 Bytes
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
from setuptools import setup, find_packages
scm_version_template = """# Generated by setuptools_scm
__all__ = ["__version__"]
__version__ = "{version}"
"""
setup(
name="rubin_sim",
use_scm_version={
"write_to": "rubin_sim/version.py",
"write_to_template": scm_version_template,
},
setup_requires=["setuptools_scm", "setuptools_scm_git_archive"],
scripts=[
"bin/maf/addRun",
"bin/maf/glance_dir",
"bin/maf/ddf_dir",
"bin/maf/maf_night_report",
"bin/maf/metadata_dir",
"bin/maf/gather_summaries",
"bin/maf/scimaf_dir",
"bin/maf/showMaf",
"bin/maf/generate_ss",
"bin/maf/run_moving_calc",
"bin/maf/run_moving_fractions",
"bin/maf/run_moving_join",
"bin/movingObjects/makeLSSTobs",
"bin/rs_download_data",
"bin/rs_download_sky",
],
packages=find_packages(),
)