-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
36 lines (33 loc) · 1.02 KB
/
setup.py
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
__version__ = '3.5.20' # Keep this on the first line so it's easy for __init__.py to grab.
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 = '[email protected]',
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.11",
],
)