-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 1015 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
29
30
31
#!/usr/bin/env python
import os,sys
from setuptools import setup
# We need to determine if ROOT is installed first before we do anything!
try:
import ROOT
print "Can import pyROOT. Good."
except:
print "ROOT and pyROOT not detected. Need this."
sys.exit(-1)
try:
import PyQt4
print "Can import PyQt4. Good."
except:
print "PyQt4 could not be imported. Need this."
sys.exit(-1)
setup(name='pylard',
version='0.1',
description='Python Liquid Argon (Event) Display',
author='Taritree Wongjirad',
author_email='taritree@mit.edu',
url='https://github.com/twongjirad/pylard',
include_package_data=True,
package_data={'pylard/config': ['microboone_32pmts_nowires_cryostat.dae','default.pylardcfg']},
packages=['pylard','pylard/config','pylard/display','pylard/eventprocessor','pylard/pylardata','pylard/vislarcv','pylard/vislarlite','pylard/visrawdigits'],
install_requires=['cython','numpy>=1.9.1','pyqtgraph','pycollada'],
)