Skip to content

Commit d88f251

Browse files
committed
Adding setup.py
1 parent e6ea1e8 commit d88f251

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

setup.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!/usr/bin/python
2+
3+
#######################################################
4+
# Copyright (c) 2015, ArrayFire
5+
# All rights reserved.
6+
#
7+
# This file is distributed under 3-clause BSD license.
8+
# The complete license agreement can be obtained at:
9+
# http://arrayfire.com/licenses/BSD-3-Clause
10+
########################################################
11+
12+
from setuptools import setup, find_packages
13+
14+
## TODO:
15+
## 1) Look for af libraries during setup
16+
## 2) Include test suite
17+
18+
setup(
19+
name="arrayfire",
20+
version="3.0.0",
21+
description="Python bindings for ArrayFire",
22+
license="BSD",
23+
url="http://arrayfire.com",
24+
packages=find_packages(exclude=['examples', 'tests']),
25+
)

0 commit comments

Comments
 (0)