-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 773 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from setuptools import setup, Extension
import os
import numpy
gridmodule = Extension('arl.core.c',
include_dirs = [numpy.get_include()],
sources=['arl/core/cmodule.c'])
setup(name='algorithm-reference-library',
version='0.8',
description='Algorithm Reference Library for Radio Interferometry',
long_description=open('README.md').read(),
author='Tim Cornwell, Peter Wortmann, Bojan Nikolic',
author_email='[email protected]',
url='https://github.com/SKA-ScienceDataProcessor/algorithm-reference-library',
license='Apache License Version 2.0',
packages=['arl', 'examples', 'tests'],
test_suite="tests",
tests_require=['pytest']
)