-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 789 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /usr/bin/env python
from setuptools import setup
setup(
name='lofn',
packages=['lofn', 'lofn.base'],
version='0.4.0',
description='Lightweight Orchestration For Now: Wrapper for serial tools '
'using Spark and Docker to parallelize',
author='Michael T. Neylon',
author_email='neylon_michael_t@lilly.com',
url='https://github.com/michaeltneylon/lofn',
download_url='https://github.com/michaeltneylon/lofn/archive/0.4.0.tar.gz',
license='Apache License 2.0',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: System :: Distributed Computing'
]
)