forked from flav-io/flavio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.5 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
37
38
39
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
with open('flavio/_version.py') as f:
exec(f.read())
setup(name='flavio',
version=__version__,
author='David M. Straub',
author_email='[email protected]',
url='https://flav-io.github.io',
description='A Python package for flavour physics phenomenology in the Standard Model and beyond',
long_description="""``flavio`` is a package to compute observables in flavour physics
both within the Standard Model of particle physics and in the presence of new
physics encoded in Wilson coefficients of local dimension-6 operators.
Observables implemented include rare B meson decays and meson-antimeson
mixing.""",
license='MIT',
packages=find_packages(),
package_data={
'flavio':['data/*.yml',
'data/test/*',
'physics/data/arXiv-0810-4077v3/*',
'physics/data/arXiv-1503-05534v1/*',
'physics/data/arXiv-1503-05534v2/*',
'physics/data/arXiv-1501-00367v2/*',
'physics/data/arXiv-1602-01399v1/*',
'physics/data/pdg/*',
'physics/data/qcdf_interpolate/*',
]
},
install_requires=['numpy', 'scipy>=0.14', 'setuptools>=3.3', 'pyyaml', 'mpmath'],
extras_require={
'testing': ['nose'],
'plotting': ['matplotlib>=1.4'],
'sampling': ['pypmc>=1.1', 'emcee']},
)