forked from pypeit/PypeIt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·63 lines (43 loc) · 1.62 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
#!/usr/bin/env python
# Licensed under a 3-clause BSD style license - see LICENSE.rst
# NOTE: The configuration for the package, including the name, version, and
# other information are set in the setup.cfg file.
import os
import sys
from setuptools import setup
from extension_helpers import get_extensions
# First provide helpful messages if contributors try and run legacy commands
# for tests or docs.
TEST_HELP = """
Note: running tests via 'python setup.py test' is now deprecated. The recommended method
is to run:
tox -e test-alldeps
The Python version can also be specified, e.g.:
tox -e py38-test-alldeps
You can list all available environments by doing:
tox -a
If you don't already have tox installed, you can install it by doing:
pip install tox
If you want to run all or part of the test suite within an existing environment,
you can use pytest directly:
pip install -e .[dev]
pytest
For more information, see:
http://docs.astropy.org/en/latest/development/testguide.html#running-tests
"""
if 'test' in sys.argv:
print(TEST_HELP)
sys.exit(1)
VERSION_TEMPLATE = """
# Note that we need to fall back to the hard-coded version if either
# setuptools_scm can't be imported or setuptools_scm can't determine the
# version, so we catch the generic 'Exception'.
try:
from setuptools_scm import get_version
version = get_version(root='..', relative_to=__file__)
except Exception:
version = '{version}'
""".lstrip()
setup(use_scm_version={'write_to': os.path.join('pypeit', 'version.py'),
'write_to_template': VERSION_TEMPLATE},
ext_modules=get_extensions())