Skip to content

Commit

Permalink
Merge pull request #10 from guillaume-philippon/setup.py
Browse files Browse the repository at this point in the history
Add setup.py to build packages
  • Loading branch information
guillaume-philippon committed Apr 14, 2015
2 parents 258f923 + 9ed2240 commit c975288
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
MANIFEST
.idea
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include csub
2 changes: 1 addition & 1 deletion csub
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf8 -*-it
# -*- coding: utf8 -*-fr
# pylint: disable=no-member
"""
csub is a python script to improve user experience with HTCondor batch scheduler
Expand Down
15 changes: 15 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env python
# -*- coding: utf8 -*-fr

from distutils.core import setup

setup(name='Condor-Tools',
version='1.0',
description='Set of python script to interact with HTCondor',
author='Guillaume Philippon',
author_email='[email protected]',
scripts=["csub"],
dependency_links=['http://research.cs.wisc.edu/htcondor/downloads/'
'?state=select_from_mirror_page&version=8.2.7&'
'mirror=UW%20Madison&optional_organization_url=http://'],
)

0 comments on commit c975288

Please sign in to comment.