forked from DsixTools/python-smeftrunner
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (28 loc) · 1.23 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
from setuptools import setup, find_packages
setup(name='smeftrunner',
version='1.9.8',
author='Xuanyou Pan, David M. Straub',
author_email='xuanyou.pan@tum.de, david.straub@tum.de',
url='https://github.com/DsixTools/python-smeftrunner',
description='A Python package for the renormalization group evolution in the Standard Model Effective Field Theory (SMEFT).',
long_description="""A Python package for the renormalization group
evolution in the Standard Model Effective Field Theory (SMEFT).
Based on the SMEFTrunner module of the DSixTools Mathematica package
by Alejandro Celis, Javier Fuentes-Martín, Avelino Vicente,
and Javier Virto (arXiv:1704.04504). RGEs based on arXiv:1308.2627,
arXiv:1310.4838, and arXiv:1312.2014 by Rodrigo Alonso,
Elizabeth Jenkins, Aneesh Manohar, and Michael Trott.""",
license='MIT',
packages=find_packages(),
package_data={
'smeftrunner':['tests/data/*',
]
},
entry_points={
'console_scripts': [
'smeftrunner-cli = smeftrunner.cli:main',
]
},
install_requires=['scipy', 'numpy', 'pylha>=0.2', 'pyyaml',
'ckmutil>=0.3', 'wcxf'],
)