-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathsetup.py
59 lines (51 loc) · 1.7 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
import setuptools
import os.path
import re
use_cython = True
try:
from Cython.Build import cythonize
import numpy
extensions = [
setuptools.Extension(
"EXOSIMS.util.KeplerSTM_C.CyKeplerSTM",
[
os.path.join("EXOSIMS", "util", "KeplerSTM_C", "CyKeplerSTM.pyx"),
os.path.join("EXOSIMS", "util", "KeplerSTM_C", "KeplerSTM_C.c"),
],
include_dirs=[numpy.get_include()],
)
]
extensions = cythonize(extensions)
except ImportError:
use_cython = False
extensions = []
with open("README.md", "r") as fh:
long_description = fh.read()
with open(os.path.join("EXOSIMS", "__init__.py"), "r") as f:
version_file = f.read()
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", version_file, re.M)
if version_match:
version_string = version_match.group(1)
else:
raise RuntimeError("Unable to find version string.")
setuptools.setup(
name="EXOSIMS",
version=version_string,
author="Dmitry Savransky",
author_email="[email protected]",
description="Exoplanet Imaging Mission Simulator",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dsavransky/EXOSIMS",
packages=setuptools.find_packages(exclude=["tests*", "tools*"]),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
ext_modules=extensions,
)