-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
32 lines (32 loc) · 1.01 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
#!/usr/bin/env python
from setuptools import setup
long_description ="""
Muesr is a python package that performs
dipole-field and dipole-tensor sums using real space algorithms for
Muon Spin Rotation and Relaxation Spectroscopy.
"""
setup(name='muesr',
version='0.1.2',
description='Magnetic structure and mUon Embedding Site Refinement',
long_description=long_description,
author='Pietro Bonfa',
author_email='[email protected]',
url='https://github.com/bonfus/muesr',
packages=['muesr',
'muesr.tests',
'muesr.tests.core',
'muesr.tests.utilities',
'muesr.core',
'muesr.i_o',
'muesr.i_o.xsf',
'muesr.i_o.cif',
'muesr.engines',
'muesr.utilities',
],
include_package_data=True,
package_dir={'muesr': 'muesr' },
install_requires=[
'numpy >= 1.6',
],
test_suite="muesr.tests",
)