forked from chime-experiment/ch_util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 893 Bytes
/
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
from setuptools import setup, find_packages
import versioneer
ch_util_data = {
"ch_util": ["catalogs/*.json"],
}
# Load the PEP508 formatted requirements from the requirements.txt file. Needs
# pip version > 19.0
with open("requirements.txt", "r") as fh:
requires = fh.readlines()
setup(
name="ch_util",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(),
python_requires=">=3.8",
install_requires=requires,
extras_require={
"chimedb_config": [
"chimedb.config @ git+ssh://git@github.com/chime-experiment/chimedb_config.git"
]
},
package_data=ch_util_data,
# metadata for upload to PyPI
author="CHIME collaboration",
author_email="richard@phas.ubc.ca",
description="Utilities for CHIME.",
license="MIT",
url="https://bitbucket.org/chime/ch_util",
)