-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
75 lines (68 loc) · 2.23 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#! /usr/bin/env python
#
# Copyright (C) 2015 California Institute of Technology
DESCRIPTION = "ztf_maf: Analysis tools for simulated ZTF schedules with LSST MAF"
LONG_DESCRIPTION = """\
Analysis tools for simulated schedules produced by the Zwicky Transient
Facility, built on the LSST Metrics Analysis Framework
"""
DISTNAME = 'ztf_maf'
MAINTAINER = 'Eric Bellm'
MAINTAINER_EMAIL = '[email protected]'
URL = 'https://github.com/ZwickyTransientFacility/ztf_maf/'
LICENSE = 'BSD (3-clause)'
DOWNLOAD_URL = 'https://github.com/ZwickyTransientFacility/ztf_maf/'
VERSION = '0.0.1.dev'
try:
from setuptools import setup
_has_setuptools = True
except ImportError:
from distutils.core import setup
# def check_dependencies():
# install_requires = []
#
# # Just make sure dependencies exist, I haven't rigorously
# # tested what the minimal versions that will work are
# # (help on that would be awesome)
# try:
# import numpy
# except ImportError:
# install_requires.append('numpy')
# try:
# import scipy
# except ImportError:
# install_requires.append('scipy')
# try:
# import matplotlib
# except ImportError:
# install_requires.append('matplotlib')
# try:
# import pandas
# except ImportError:
# install_requires.append('pandas')
#
# return install_requires
if __name__ == "__main__":
# install_requires = check_dependencies()
setup(name=DISTNAME,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
license=LICENSE,
url=URL,
version=VERSION,
download_url=DOWNLOAD_URL,
install_requires=install_requires,
packages=['ztf_maf'],
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering :: Visualization',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'],
)