-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.17 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
__version__ = '3.13.7' # Keep this on the first line so it's easy for __init__.py to grab.
# We now match the first two spinmob version numbers to the python version
# against which it is tested. The last digit is incremented for spinmob changes.
from setuptools import setup
setup(name = 'spinmob',
version = __version__,
description = 'Data handling, plotting, analysis, and GUI building for scientific labs',
author = 'Jack Sankey',
author_email = 'jack.sankey@gmail.com',
url = 'https://github.com/Spinmob/spinmob',
packages = [
'spinmob',
'spinmob.tests',
'spinmob.egg',
],
package_dir = {
'spinmob' : '.',
'tests' : './tests',
'egg' : './egg',
},
package_data={
'' : [
'./setup.py',
'./tests/fixtures/*.*',
'./egg/DataboxProcessor/*.*',
],
},
install_requires=[
"scipy",
"matplotlib",
"lmfit",
"pyopengl",
"pyqtgraph~=0.14.0",
],
)