Skip to content

Commit

Permalink
Reverting setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
karllark committed Jun 15, 2019
1 parent 2bad4a6 commit da6eec0
Showing 1 changed file with 51 additions and 65 deletions.
116 changes: 51 additions & 65 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,35 +6,28 @@
import glob
import os
import sys

try:
from configparser import ConfigParser
except ImportError:
from ConfigParser import ConfigParser

# Get some values from the setup.cfg
conf = ConfigParser()
conf.read(["setup.cfg"])
metadata = dict(conf.items("metadata"))

PACKAGENAME = metadata.get("package_name", "dust_extinction")
DESCRIPTION = metadata.get("description", "Interstellar Dust Extinction Models")
AUTHOR = metadata.get("author", "Karl Gordon and Kristen Larson")
AUTHOR_EMAIL = metadata.get("author_email", "")
LICENSE = metadata.get("license", "unknown")
URL = metadata.get("url", "http://dust-extinction.readthedocs.io/")
conf.read(['setup.cfg'])
metadata = dict(conf.items('metadata'))

PACKAGENAME = metadata.get('package_name', 'dust_extinction')
DESCRIPTION = metadata.get('description', 'Interstellar Dust Extinction Models')
AUTHOR = metadata.get('author', 'Karl Gordon and Kristen Larson')
AUTHOR_EMAIL = metadata.get('author_email', '')
LICENSE = metadata.get('license', 'unknown')
URL = metadata.get('url', 'http://dust-extinction.readthedocs.io/')
__minimum_python_version__ = metadata.get("minimum_python_version", "2.7")

# Enforce Python version check - this is the same check as in __init__.py but
# this one has to happen before importing ah_bootstrap.
if sys.version_info < tuple(
(int(val) for val in __minimum_python_version__.split("."))
):
sys.stderr.write(
"ERROR: dust_extinction requires Python {} or later\n".format(
__minimum_python_version__
)
)
if sys.version_info < tuple((int(val) for val in __minimum_python_version__.split('.'))):
sys.stderr.write("ERROR: dust_extinction requires Python {} or later\n".format(__minimum_python_version__))
sys.exit(1)

# Import ah_bootstrap after the python version validation
Expand All @@ -49,11 +42,8 @@
import __builtin__ as builtins
builtins._ASTROPY_SETUP_ = True

from astropy_helpers.setup_helpers import (
register_commands,
get_debug_option,
get_package_info,
)
from astropy_helpers.setup_helpers import (register_commands, get_debug_option,
get_package_info)
from astropy_helpers.git_helpers import get_git_devstr
from astropy_helpers.version_helpers import generate_version_py

Expand All @@ -63,13 +53,13 @@
# (2) load LONG_DESCRIPTION.rst,
# (3) load README.rst,
# (4) package docstring
readme_glob = "README*"
_cfg_long_description = metadata.get("long_description", "")
readme_glob = 'README*'
_cfg_long_description = metadata.get('long_description', '')
if _cfg_long_description:
LONG_DESCRIPTION = _cfg_long_description

elif os.path.exists("LONG_DESCRIPTION.rst"):
with open("LONG_DESCRIPTION.rst") as f:
elif os.path.exists('LONG_DESCRIPTION.rst'):
with open('LONG_DESCRIPTION.rst') as f:
LONG_DESCRIPTION = f.read()

elif len(glob.glob(readme_glob)) > 0:
Expand All @@ -87,10 +77,10 @@
builtins._ASTROPY_PACKAGE_NAME_ = PACKAGENAME

# VERSION should be PEP440 compatible (http://www.python.org/dev/peps/pep-0440)
VERSION = metadata.get("version", "0.0.dev")
VERSION = metadata.get('version', '0.0.dev')

# Indicates if this version is a release version
RELEASE = "dev" not in VERSION
RELEASE = 'dev' not in VERSION

if not RELEASE:
VERSION += get_git_devstr(False)
Expand All @@ -101,14 +91,12 @@
cmdclassd = register_commands(PACKAGENAME, VERSION, RELEASE)

# Freeze build information in version.py
generate_version_py(PACKAGENAME, VERSION, RELEASE, get_debug_option(PACKAGENAME))
generate_version_py(PACKAGENAME, VERSION, RELEASE,
get_debug_option(PACKAGENAME))

# Treat everything in scripts except README* as a script to be installed
scripts = [
fname
for fname in glob.glob(os.path.join("scripts", "*"))
if not os.path.basename(fname).startswith("README")
]
scripts = [fname for fname in glob.glob(os.path.join('scripts', '*'))
if not os.path.basename(fname).startswith('README')]


# Get configuration information from all of the various subpackages.
Expand All @@ -117,50 +105,48 @@
package_info = get_package_info()

# Add the project-global data
package_info["package_data"].setdefault(PACKAGENAME, [])
package_info["package_data"][PACKAGENAME].append("data/*")
package_info['package_data'].setdefault(PACKAGENAME, [])
package_info['package_data'][PACKAGENAME].append('data/*')

# Define entry points for command-line scripts
entry_points = {"console_scripts": []}
entry_points = {'console_scripts': []}

if conf.has_section("entry_points"):
entry_point_list = conf.items("entry_points")
if conf.has_section('entry_points'):
entry_point_list = conf.items('entry_points')
for entry_point in entry_point_list:
entry_points["console_scripts"].append(
"{0} = {1}".format(entry_point[0], entry_point[1])
)
entry_points['console_scripts'].append('{0} = {1}'.format(
entry_point[0], entry_point[1]))

# Include all .c files, recursively, including those generated by
# Cython, since we can not do this in MANIFEST.in with a "dynamic"
# directory name.
c_files = []
for root, dirs, files in os.walk(PACKAGENAME):
for filename in files:
if filename.endswith(".c"):
c_files.append(os.path.join(os.path.relpath(root, PACKAGENAME), filename))
package_info["package_data"][PACKAGENAME].extend(c_files)
if filename.endswith('.c'):
c_files.append(
os.path.join(
os.path.relpath(root, PACKAGENAME), filename))
package_info['package_data'][PACKAGENAME].extend(c_files)

# Note that requires and provides should not be included in the call to
# ``setup``, since these are now deprecated. See this link for more details:
# https://groups.google.com/forum/#!topic/astropy-dev/urYO8ckB2uM

setup(
name=PACKAGENAME,
version=VERSION,
description=DESCRIPTION,
scripts=scripts,
install_requires=[
s.strip() for s in metadata.get("install_requires", "astropy").split(",")
],
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
url=URL,
long_description=LONG_DESCRIPTION,
cmdclass=cmdclassd,
zip_safe=False,
use_2to3=False,
entry_points=entry_points,
python_requires=">={}".format(__minimum_python_version__),
**package_info
setup(name=PACKAGENAME,
version=VERSION,
description=DESCRIPTION,
scripts=scripts,
install_requires=[s.strip() for s in metadata.get('install_requires', 'astropy').split(',')],
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
url=URL,
long_description=LONG_DESCRIPTION,
cmdclass=cmdclassd,
zip_safe=False,
use_2to3=False,
entry_points=entry_points,
python_requires='>={}'.format(__minimum_python_version__),
**package_info
)

0 comments on commit da6eec0

Please sign in to comment.