-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·48 lines (41 loc) · 1.79 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
#! /usr/bin/env python
# -*- mode: python; coding: utf-8 -*-
# Copyright 2019 David DeBoer
# Licensed under the 2-clause BSD license.
from __future__ import absolute_import, division, print_function
import glob
import io
from setuptools import setup
from radiobear import version
with io.open('README.md', 'r', encoding='utf-8') as readme_file:
readme = readme_file.read()
setup_args = {
'name': "radiobear",
'description': "radioBEAR: radio version BErkeley Atmosphere Radiative transfer",
'long_description': readme,
'url': "https://github.com/david-deboer/radiobear",
'license': "BSD",
'author': "David DeBoer",
'author_email': "[email protected]",
'version': version.VERSION,
'packages': ['radiobear', 'radiobear.plotting',
'radiobear.Jupiter', 'radiobear.Saturn', 'radiobear.Uranus', 'radiobear.Neptune',
'radiobear.constituents',
'radiobear.constituents.clouds', 'radiobear.constituents.co',
'radiobear.constituents.h2', 'radiobear.constituents.h2o',
'radiobear.constituents.h2s', 'radiobear.constituents.nh3',
'radiobear.constituents.ph3'],
'scripts': glob.glob('scripts/*'),
'include_package_data': True,
'install_requires': ["numpy", "matplotlib", "scipy"],
'classifiers': ["Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"]
}
if __name__ == '__main__':
setup(**setup_args)
# from radiobear import this_radiobear_update # noqa