-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (46 loc) · 1.97 KB
/
setup.py
File metadata and controls
51 lines (46 loc) · 1.97 KB
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
42
43
44
45
46
47
48
49
50
# -----------------------------------------------------------
# Copyright (C) 2009 StatPro Italia s.r.l.
#
# StatPro Italia
# Via G. B. Vico 4
# I-20123 Milano
# ITALY
#
# phone: +39 02 96875 1
# fax: +39 02 96875 605
#
# This program is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
# PURPOSE. See the license for more details.
# -----------------------------------------------------------
#
# Author: Enrico Sirola <enrico.sirola@statpro.com>
from setuptools import setup, find_packages
packages = find_packages()
package_data = dict([ (x, ['test/*.py']) for x in packages])
setup(
name="drmaa",
version="0.5",
packages=packages,
package_data=package_data,
author="Enrico Sirola",
author_email="enrico.sirola@gmail.com",
description="a python DRMAA library",
license="BSD",
keywords="python grid hpc drmaa",
url="http://drmaa-python.googlecode.com",
download_url="http://code.google.com/p/drmaa-python/downloads/list",
tests_require='nose',
test_suite='nose.collector',
classifiers="""\
Development Status :: 4 - Beta
Operating System :: OS Independent
Intended Audience :: System Administrators
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Programming Language :: Python :: 2
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Distributed Computing""".split('\n'),
)