-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
29 lines (26 loc) · 825 Bytes
/
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
import setuptools, sys
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="TIMBER", # Replace with your own username
version="0.1.1",
author="lcorcodilos",
author_email="corcodilos.lucas@gmail.com",
description="Tree Interface for Making Binned Events with RDataFrame",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lcorcodilos/TIMBER",
packages=setuptools.find_packages(),
include_package_data=True,
# cmdclass={'install': AddToPath},
install_requires = [
"decorator==4.4.2",
"pyparsing==2.4.7",
"graphviz==0.14.2",
"pydot==1.4.1",
"networkx==2.2",
"clang==6.0.0.2",
"numpy==1.16.6",
"pandas==0.24.2"
]
)