Skip to content
Snippets Groups Projects
Commit e6ab2c3b authored by Felix Metzner's avatar Felix Metzner
Browse files

Some fixes in setup.py.

parent 81da99f0
Branches
No related tags found
No related merge requests found
from setuptools import setup
from setuptools import setup, find_packages
setup(
name='eFFORT',
version='v.0.2.0',
packages=['eFFORT'],
url='https://gitlab.ekp.kit.edu/mapr/eFFORT',
license='',
author='Markus Tobias Prim, Maximilian Welsch',
author_email='markus.prim@kit.edu',
description='A tool for convenient reweighting between different form factors of semileptonic B decays.',
install_requires=['numpy', 'scipy', 'matplotlib', 'tabulate', 'uncertainties', 'numdifftools', 'pandas'],
name="eFFORT",
packages=find_packages(),
version="v.0.3.0",
url="https://gitlab.ekp.kit.edu/fmetzner/eFFORT",
license="",
author="Markus Tobias Prim, Maximilian Welsch",
author_email="markus.prim@kit.edu",
description="A tool for convenient reweighting between different form factors of semileptonic B decays.",
install_requires=[
"numpy",
"scipy",
"matplotlib",
"tabulate",
"uncertainties",
"numdifftools",
"pandas"
],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment