File: setup.py

package info (click to toggle)
astroquery 0.4.11%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 26,524 kB
  • sloc: python: 53,595; xml: 36,604; makefile: 140; ansic: 69
file content (23 lines) | stat: -rwxr-xr-x 632 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
# Licensed under a 3-clause BSD style license - see LICENSE.rst

import os
import sys

# Workaround for https://github.com/pypa/pip/issues/6163
sys.path.insert(0, os.path.dirname(__file__))
sys.path.insert(0, os.path.dirname(__file__) + '/astropy_helpers')

import builtins

builtins._ASTROPY_SETUP_ = True

from astropy_helpers.setup_helpers import setup

# Read the contents of the README file
from pathlib import Path
this_directory = Path(__file__).parent

long_description = (this_directory / "README.rst").read_text()

setup(long_description=long_description, long_description_content_type='text/x-rst')