forked from smelli/smelli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (30 loc) · 1.12 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
from setuptools import setup, find_packages
with open('smelli/_version.py') as f:
exec(f.read())
with open('README.md', encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
setup(name='smelli',
version=__version__,
author='Jason Aebischer <[email protected]>, Jacky Kumar <[email protected]>, Peter Stangl <[email protected]>, David M. Straub <[email protected]>',
description='A Python package providing a global likelihood function in the space of dimension-6 Wilson coefficients of the Standard Model Effective Field Theory (SMEFT)',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
license='MIT',
packages=find_packages(),
package_data={
'smelli': ['data/yaml/*.yaml',
'data/cache/*.p',
'data/test/*.yaml',
]
},
install_requires=[
'numpy>=1.16.5',
'flavio>=' + __flavio__version__,
'wilson',
'pandas',
'multipledispatch'
],
extras_require={
'testing': ['pytest'],
},
)