forked from bulukutlu/TPCQCVis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (41 loc) · 1.29 KB
/
setup.py
File metadata and controls
43 lines (41 loc) · 1.29 KB
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
from distutils.core import setup
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
author_email='berkin.ulukutlu@cern.ch',
author='Berkin Ulukutlu',
url='https://github.com/bulukutlu/TPCQCVis',
name='TPCQCVis',
version='v0.1',
#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',
'pandas',
'runtime',
'requests',
'rise',
'schedule',
'scikit-learn',
##--------------------- graphics dependencies
'bokeh',
# ---------------------- jupyter notebook dependencies
'ipywidgets',
'jupyter-server<2.0.0',
'jupyter_contrib_nbextensions',
'notebook==6.4.12',
'traitlets==5.9.0',
##--------------------- google drive api dependencies (for daily reporting from emails)
'google-api-python-client',
'google-auth-httplib2',
'google-auth-oauthlib',
]
)