-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 802 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 802 Bytes
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
#!/usr/bin/env python
from distutils.core import setup
setup(
name='condor-comforter',
version='0.2',
description="Some helper scripts for running HTCondor jobs",
author='Robin Aggleton',
author_email='',
url='https://github.com/BristolComputing/condor-comforter',
packages=['cmsRunCondor', 'haddaway'],
scripts=['cmsRunCondor/cmsRunCondor.py', 'haddaway/haddaway.py'],
install_requires=['htcondenser>=0.3.0'],
dependency_links=['git+https://github.com/raggleton/htcondenser#egg=htcondenser-0.3.0'],
# need this for the script version
data_files=[
('bin', ['cmsRunCondor/cmsRun_worker.sh'])
],
# need these 2 for the package version
include_package_data=True,
package_data={
'cmsRunCondor': ['cmsRun_worker.sh']
}
)