-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (53 loc) · 1.51 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
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# File : setup.py
# License : BSD-3-Clause
# Author : jvs
# Date : Unspecified
# Last Modified Date: 04.04.2021
# Last Modified By : jno
from setuptools import find_namespace_packages, setup
setup(
name="ampel-contrib-sample",
version="0.7.1-alpha.0",
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",
],
},
install_requires=[
'ampel-interface>=0.7.1-alpha.7,<0.7.2',
'ampel-core[plotting]>=0.7.1-alpha.3,<0.7.2',
'ampel-photometry>=0.7.1-alpha.0,<0.7.2',
'ampel-alerts>=0.7.1-alpha.0,<0.7.2',
'ampel-ztf>=0.7.1-alpha.8,<0.7.2',
# "catsHTM",
"extcats",
"zerorpc",
# see: https://github.com/sncosmo/sncosmo/issues/291 - should be fixed now
"sncosmo==2.2.0",
"iminuit==1.5.1",
# "sncosmo",
# "iminuit",
"sfdmap",
"astropy",
"numpy",
"scipy",
# "beautifulsoup4",
# "backoff",
# "requests",
# "pymage @ https://github.com/MickaelRigault/pymage/archive/v1.0.tar.gz",
# pymage secretly depends on pandas
# "pandas",
],
)