forked from MarkusPrim/BelleIIAcademyBonn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.06 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
43
44
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='BelleIIAcademyBonn',
packages=find_packages(),
url="",
author='Markus Tobias Prim',
author_email='[email protected]',
description='''
Software for the Belle II Academy in Bonn.
''',
install_requires=[
'tqdm',
'numpy<1.23', # Remove this when numba becomes compatible with numpy>=1.23
'pandas',
'scipy',
'numba',
'matplotlib',
'jupyterlab',
'jupyter',
'uncertainties',
'iminuit',
'gvar',
'numdifftools',
'statsmodels',
'tables'
],
extras_require={
"examples": [],
},
long_description=readme,
long_description_content_type='text/markdown',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License "
],
license='MIT',
)