-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
heppy and heppy_batch.py should work in pypi install
- Loading branch information
Showing
2 changed files
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,15 @@ | |
|
||
scripts = glob.glob('bin/*.py') | ||
scripts.remove('bin/__init__.py') | ||
scripts.append('bin/heppy') | ||
print scripts | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name='heppyfwk', | ||
version='2.0.5', | ||
version='2.0.9', | ||
author='Colin Bernet', | ||
author_email='[email protected]', | ||
description='An event processing framework for High Energy Physics.', | ||
|
@@ -50,7 +51,8 @@ | |
'scipy', | ||
'dill', | ||
'gitpython', | ||
'pyyaml' | ||
'pyyaml', | ||
'ipython' | ||
], | ||
scripts = scripts | ||
) | ||
|