We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6ea1e8 commit d88f251Copy full SHA for d88f251
setup.py
@@ -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