forked from cherab/solps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
68 lines (58 loc) · 2.07 KB
/
setup.py
File metadata and controls
68 lines (58 loc) · 2.07 KB
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
from setuptools import setup, find_packages, Extension
from Cython.Build import cythonize
import sys
import numpy
import os
import os.path as path
force = False
profile = False
if "--force" in sys.argv:
force = True
del sys.argv[sys.argv.index("--force")]
if "--profile" in sys.argv:
profile = True
del sys.argv[sys.argv.index("--profile")]
compilation_includes = [".", numpy.get_include()]
setup_path = path.dirname(path.abspath(__file__))
# build extension list
extensions = []
for root, dirs, files in os.walk(setup_path):
for file in files:
if path.splitext(file)[1] == ".pyx":
pyx_file = path.relpath(path.join(root, file), setup_path)
module = path.splitext(pyx_file)[0].replace("/", ".")
extensions.append(Extension(module, [pyx_file], include_dirs=compilation_includes),)
cython_directives = {"language_level": 3}
if profile:
cython_directives["profile"] = True
with open("README.md") as f:
long_description = f.read()
setup(
name="cherab-solps",
version="1.2.1",
license="EUPL 1.1",
namespace_packages=['cherab'],
description="Cherab spectroscopy framework: SOLPS submodule",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Cython",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
],
url="https://github.com/cherab",
project_urls=dict(
Tracker="https://github.com/cherab/solps/issues",
Documentation="https://cherab.github.io/documentation/",
),
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
include_package_data=True,
install_requires=["raysect==0.7.1", "cherab==1.4"],
ext_modules=cythonize(extensions, force=force, compiler_directives=cython_directives),
)