forked from pycondor/pycondor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (37 loc) · 1.25 KB
/
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
32
33
34
35
36
37
38
39
40
41
'''
James Bourbeau 2017
PyCondor
Author: James Bourbeau <jamesbourbeau.com>
License: MIT
Code repository: https://github.com/jrbourbeau/pycondor
'''
from setuptools import setup, find_packages
import pycondor
VERSION = pycondor.__version__
setup(
name='PyCondor',
version=VERSION,
description='Python utility for HTCondor',
url='https://github.com/jrbourbeau/pycondor',
author='James Bourbeau',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'
],
keywords='python condor htcondor high-throughput computing utility tool',
packages=find_packages(),
package_data={'': ['LICENSE',
'README.md'],
'examples': ['examples/savelist.py',
'examples/job_example.py',
'examples/job_arguments_example.py',
'examples/dagman_example.py',
'examples/dagman_parentchild_example.py',
'examples/subdag_example.py']}
)