-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (25 loc) · 752 Bytes
/
setup.py
File metadata and controls
31 lines (25 loc) · 752 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
# -*- mode: python; coding: utf-8 -*-
# Copyright (c) 2021 The HERA Collaboration
# Licensed under the MIT license.
"""Define setup.py for hera_cc_utils."""
from setuptools import setup, find_namespace_packages
link = "https://github.com/HERA-Team/hera_cc_utils"
setup_args = {
"name": "hera_cc_utils",
"version": "0.1",
"description": "utilities for work on cross-correlations",
"author": "Jordan Mirocha",
"author_email": "mirochaj@gmail.com",
"url": link,
"packages": find_namespace_packages(),
"include_package_data": True,
"use_scm_version": True,
"install_requires": [
"astropy",
"healpy",
"numpy",
"matplotlib",
"setuptools_scm",
],
}
setup(**setup_args)