-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (34 loc) · 1.1 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# File: Ampel-ZTF/setup.py
# License: BSD-3-Clause
# Author: valery brinnel <firstname.lastname@gmail.com>
# Date: Unspecified
# Last Modified Date: 07.04.2023
# Last Modified By: valery brinnel <firstname.lastname@gmail.com>
from setuptools import find_namespace_packages, setup
package_data = {
"conf": [
"ampel-ztf/*.yaml",
"ampel-ztf/*.yml",
"ampel-ztf/*.json",
"ampel-ztf/**/*.yaml",
"ampel-ztf/**/*.yml",
"ampel-ztf/**/*.json",
],
"ampel.test": ["test-data/*"],
}
extras_require = {"archive": ["ampel-ztf-archive>=0.7.0-alpha.0"]}
setup(
name="ampel-ztf",
version="0.9.0",
description="Zwicky Transient Facility support for the Ampel system",
author="Valery Brinnel",
maintainer="Jakob van Santen",
maintainer_email="jakob.van.santen@desy.de",
url="https://ampelproject.github.io",
packages=find_namespace_packages(),
package_data=package_data,
extras_require=extras_require,
python_requires=">=3.10,<3.11",
)