-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
94 lines (80 loc) · 2.18 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# -*- coding: utf-8 -*-
"""
setup.py - Luke Bouma ([email protected]) - Apr 2019
Stolen from the astrobase setup.py
"""
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to pytest")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def run_tests(self):
import shlex
import pytest
if not self.pytest_args:
targs = []
else:
targs = shlex.split(self.pytest_args)
errno = pytest.main(targs)
sys.exit(errno)
def readme():
with open('README.md') as f:
return f.read()
INSTALL_REQUIRES = [
'numpy>=1.4.0',
'scipy',
'astropy>=1.3',
'matplotlib',
]
EXTRAS_REQUIRE = {
'all':[
'emcee==3.0rc1',
'h5py',
'batman-package',
'corner'
]
}
###############
## RUN SETUP ##
###############
# run setup.
version = 0.4
setup(
name='cdips',
version=version,
description=('Python modules and scripts used for CDIPS project.'),
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
keywords='astronomy',
url='https://github.com/lgbouma/cdips',
download_url=f'https://github.com/lgbouma/cdips/archive/refs/tags/v{str(version).replace(".","")}.tar.gz',
author='Luke Bouma',
author_email='[email protected]',
license='MIT',
packages=[
'cdips',
'cdips.lcproc',
'cdips.catalogbuild',
'cdips.plotting',
'cdips.tests',
'cdips.utils',
'cdips.pipetrextuning'
],
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
tests_require=['pytest==3.8.2',],
cmdclass={'test':PyTest},
include_package_data=True,
zip_safe=False,
)