-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (18 loc) · 820 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (18 loc) · 820 Bytes
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
# =============================================================================
# Imports
# =============================================================================
# Standard
from setuptools import setup
# Local application
from sklr._build_utils import cythonize_extensions
# =============================================================================
# Constants
# =============================================================================
# The module name is not package metadata, and
# cannot be declared in the configuration file
MOD_NAME = "sklr"
# =============================================================================
# Main
# =============================================================================
if __name__ == "__main__":
setup(ext_modules=cythonize_extensions(MOD_NAME))