-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (26 loc) · 912 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
"""
CoMeT, a config and metadata tracker.
``comet`` lives on
`GitHub <https://github.com/chime-experiment/comet>`_.
"""
from os import path
from setuptools import setup, find_packages
import versioneer
here = path.abspath(path.dirname(__file__))
# Load the requirements from requirements.txt while removing the environment marks
with open(path.join(here, "requirements.txt")) as f:
requirements = [line.split(";")[0].rstrip() for line in f]
setup(
name="comet",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Config and Metadata Tracker",
url="https://github.com/chime-experiment/dataset-broker",
author="Rick Nitsche",
author_email="[email protected]",
packages=find_packages(),
install_requires=requirements,
python_requires=">= 3.8",
include_package_data=True,
scripts=["scripts/comet", "scripts/comet_archiver"],
)