forked from b2-hive/eFFORT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.2 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
from pkg_resources import resource_filename
from pathlib import Path
with open(resource_filename("eFFORT", "version.txt"), "r") as vf:
version = vf.read().strip()
with (Path(__file__).parent / 'readme.md').open() as readme_file:
readme = readme_file.read()
setup(
name='eFFORT',
packages=find_packages(),
url='https://github.com/b2-hive/eFFORT',
author='Markus Tobias Prim, Maximilian Welsch',
author_email='[email protected]',
description='A tool for convenient reweighting between different form '
'factors of semileptonic B decays.',
install_requires=[
'numpy',
'scipy',
'matplotlib',
'tabulate',
'uncertainties',
'numdifftools',
'pandas',
'click',
],
include_package_data=True,
long_description=readme,
long_description_content_type='text/markdown',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License "
],
license='MIT',
entry_points='''
[console_scripts]
download_btodstarstarlnu_data=eFFORT.SLBToC.utility:download_botdstarstarlnu_data
'''
)