forked from next-exp/IC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (17 loc) · 680 Bytes
/
setup.py
File metadata and controls
20 lines (17 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
from Cython.Build import cythonize
from os import path
from subprocess import check_output
import numpy
numpy_include = path.join(path.dirname(numpy.__file__), 'core/include')
setup(name = 'invisible cities',
version = check_output('git describe --tags --always'.split()).decode(),
description = 'NEXT blah blah',
url = 'https://github.com/nextic/IC',
author = 'NEXT collaboration',
author_email = 'nextic@TODO.org',
license = 'TODO',
packages = ['invisible_cities'],
ext_modules = cythonize('invisible_cities**/*.pyx'),
include_dirs = [numpy_include],
)