Browse code

add setup.py and requirements file

Joseph Weston authored on 29/08/2017 11:48:58
Showing 2 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,4 @@
1
+numpy
2
+holoviews
3
+ipython
4
+ipyparallel
0 5
new file mode 100644
... ...
@@ -0,0 +1,26 @@
1
+# -*- coding: utf-8 -*-
2
+
3
+from setuptools import setup
4
+
5
+
6
+with open('requirements.txt') as f:
7
+    requirements = f.readlines()
8
+
9
+setup(
10
+    name='adaptive',
11
+    description='Adaptively sample mathematical functions',
12
+    version='0.1a',
13
+
14
+    url='https://gitlab.kwant-project.org/qt/adaptive',
15
+    author='Adaptive authors',
16
+    license='BSD',
17
+    classifiers=[
18
+        'Development Status :: 3 - Alpha',
19
+        'License :: OSI Approved :: BSD License'
20
+        'Intended Audience :: Science/Research',
21
+        'Topic :: Software Development :: Build Tools',
22
+        'Programming Language :: Python :: 3.6',
23
+    ],
24
+    packages=['adaptive'],
25
+    install_requires=requirements,
26
+)