-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild_stripe_tools.py
23 lines (22 loc) · 1.01 KB
/
build_stripe_tools.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
import numpy as np
from setuptools import setup, Extension, find_packages
setup(name = "striped_c_tools",
version = "1.0.0",
description = "Extension module for Striped infrastructure",
author = "Igor Mandrichenko (Fermilab)",
author_email = "[email protected]",
maintainer = "Igor Mandrichenko (Fermilab)",
maintainer_email = "[email protected]",
classifiers = ["Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
],
ext_modules = [Extension('striped_c_tools',['stripe_tools/stripe_tools.c'])],
include_dirs = [np.get_include()],
zip_safe = False
)