-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
40 lines (36 loc) · 1.48 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
import os
# import sys
from setuptools import setup, find_packages
PACKAGE_NAME = 'pypsg'
# MINIMUM_PYTHON_VERSION = 3, 5
#
#
# def check_python_version():
# """Exit when the Python version is too low."""
# if sys.version_info < MINIMUM_PYTHON_VERSION:
# sys.exit("Python {}.{}+ is required.".format(*MINIMUM_PYTHON_VERSION))
def read_package_variable(key):
"""Read the value of a variable from the package without importing."""
module_path = os.path.join(PACKAGE_NAME, '__init__.py')
with open(module_path) as module:
for line in module:
parts = line.strip().split(' ')
if parts and parts[0] == key:
return parts[-1].strip("'")
assert 0, "'{0}' not found in '{1}'".format(key, module_path)
# check_python_version()
setup(
name=PACKAGE_NAME,
version=read_package_variable('__version__'),
description='A Python package for interacting with the NASA Goddard PSG (Planetary Spectrum Generator) tool https://psg.gsfc.nasa.gov/',
author='Atilim Gunes Baydin',
author_email='[email protected]',
packages=find_packages(),
install_requires=['numpy', 'requests>=2.19.1'],
include_package_data=True,
package_data={'': ['*.config']},
url='https://gitlab.com/frontierdevelopmentlab/astrobiology/pypsg',
classifiers=['Development Status :: 4 - Beta', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 3.5'],
license='BSD',
keywords='exoplanets, astrobiology',
)