-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·52 lines (50 loc) · 1.39 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
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# File: setup.py
# License: BSD-3-Clause
# Author: jvs
# Date: Unspecified
# Last Modified Date: 19.12.2022
# Last Modified By: valery brinnel <[email protected]>
from setuptools import find_namespace_packages, setup
setup(
name="ampel-hu-astro",
version="0.8.3-alpha.20",
packages=find_namespace_packages(),
package_data={
"": ["*.json", "py.typed"], # include any package containing *.json files
"conf": [
"*.json",
"**/*.json",
"**/**/*.json",
"*.yaml",
"**/*.yaml",
"**/**/*.yaml",
"*.yml",
"**/*.yml",
"**/**/*.yml",
],
},
python_requires = '>=3.10,<3.11',
install_requires=[
'ampel-interface>=0.8.7,<0.9',
'ampel-core>=0.8.6,<0.9',
'ampel-plot>=0.8.3.post3,<0.9',
'ampel-photometry>=0.8.3a0,<0.9',
'ampel-alerts>=0.8.4,<0.9',
'ampel-ztf>=0.8.5,<0.9',
"sncosmo",
"iminuit",
"sfdmap",
"astropy",
"numpy",
"scipy",
"beautifulsoup4",
"backoff",
"requests",
"sep",
"pymage @ https://github.com/MickaelRigault/pymage/archive/v1.0.tar.gz",
# pymage secretly depends on pandas
"pandas",
],
)