-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
45 lines (43 loc) · 1.44 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
45
from distutils.core import setup
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
author_email='marian.ivanov@cern.ch, marian.i@cern.ch',
author='Marian I. Ivanov, Marian Ivanov ',
url='https://github.com/miranov25/RootInteractive',
name='RootInteractive',
version='v0.01.11',
#packages=setuptools.find_packages(),
packages=setuptools.find_packages(exclude=["scripts*", "tests*","*d.ts"]),
license='Not defined yet. Most probably similar to ALICE (CERN) license',
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=False,
package_data={
'': ['../*/*/*/*.ts']
},
install_requires=[
'numpy',
'scipy',
'pandas',
'anytree',
'nbval',
'tabulate',
## root dependencies
'iminuit',
##--------------------- graphics dependencies
'bokeh>3.2',
'matplotlib',
# ---------------------- jupyter notebook dependencies
'ipywidgets',
'runtime',
'requests',
# --------------------- machine learning dependencies
'scikit-learn',
'scikit-hep',
"jinja2==3.0.3",
# ------------------ dependencies needed for test and tutorials in special requirement file requirement_Devel.txt
"jupyter" # not dependence but needed to run tutorials
]
)