-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.48 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.48 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
38
39
40
41
#!/usr/bin/env python
from setuptools import setup
setup(name='mujpy',
version='2.7.3.3a',
description='A Python MuSR data analysis program designed for Jupyterlab. ',
author='Roberto De Renzi, Pietro Bonfa',
author_email='roberto.derenzi@unipr.it',
url='https://github.com/RDeRenzi/mujpy',
packages=['mujpy',
'mujpy.tools',
'mujpy.logo',
'mujpy.mucomponents',
],
include_package_data=True,
package_dir={'mujpy': 'mujpy' },
install_requires=[
'numpy',
'scipy',
'jupyterlab',
'ipywidgets ',
'iminuit >= 2.17',
'matplotlib >= 2.0',
'nexus=4.4.*',
'musr2py>=0.0.2',
'munexus>=0.1'
],
long_description='A Python MuSR data analysis program designed for Jupyterlab. User-friendly, does single, sequential and global fits, nice animation display for multi-run fits. Works on Linux, Windows, MacOS',
license = 'MIT',
keywords = 'musr fit',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
]
)