-
Notifications
You must be signed in to change notification settings - Fork 62
/
setup.py
42 lines (39 loc) · 1.59 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
40
41
42
from setuptools import setup, find_packages
with open('flavio/_version.py', encoding='utf-8') as f:
exec(f.read())
with open('README.md', encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(name='flavio',
version=__version__,
author='David M. Straub',
author_email='straub@protonmail.com',
url='https://flav-io.github.io',
description='A Python package for flavour physics phenomenology in the Standard Model and beyond',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
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/arXiv-1602-01399v1/*',
'physics/data/arXiv-1811-00983v1/*',
'physics/data/arXiv-2102.07233v2/*',
'physics/data/arXiv-2305-06301v1/*',
'physics/data/qcdf_interpolate/*',
'physics/data/wcsm/*',
]
},
install_requires=['numpy>=1.20.0', 'scipy', 'setuptools>=3.3', 'pyyaml',
'ckmutil>=1.2.0', 'wilson>=2.4', 'particle>=0.21.0', 'parton>=0.2.1', ],
extras_require={
'testing': ['nose2'],
'plotting': ['matplotlib>=2.0'],
'sampling': ['iminuit>=2.0'],
},
)