File size: 555 Bytes
b2ffc9b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
@author : Romain Graux
@date : 2023 April 06, 17:33:28
@last modified : 2023 April 24, 15:59:09
@last modified : 2023 April 24, 15:59:09
"""

import os
import logging
from distutils.core import setup, Extension

logging.basicConfig(level=logging.INFO)

os.environ["CC"] = "g++"

fast_filters_module = Extension(
    "fast_filters",
    sources=["atoms_detection/fast_filters.cpp"],
)

setup(
    name="atoms_detection",
    version="0.0.1a0",
    description="",
    ext_modules=[fast_filters_module],
)