forked from MarkusPrim/eFFORT2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 1.01 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
from setuptools import setup, find_packages
from pkg_resources import resource_filename
from pathlib import Path
with (Path(__file__).parent / 'README.md').open() as readme_file:
readme = readme_file.read()
setup(
name='EFFORT2',
packages=find_packages(),
url="",
author='Markus Tobias Prim',
author_email='[email protected]',
description='''
A tool for convenient reweighting between different form
factors of semileptonic B decays, and fitting measured
spectra.
''',
install_requires=[
'numpy',
'scipy',
'numba',
'setuptools',
'uncertainties',
],
extras_require={
"examples": ['matplotlib', 'jupyterlab', 'gvar'],
},
long_description=readme,
long_description_content_type='text/markdown',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License "
],
license='MIT',
version='0.1.0', # version should be same as in effort2/__init__.py and CITATION.cff
)