-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
26 lines (24 loc) · 1.08 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
from distutils.core import setup
setup(
name = "skywriting",
version = '0.1-dev',
description = "Programming language for distributed, parallel computation",
author = "Derek Murray",
author_email = "[email protected]",
url = "http://www.cl.cam.ac.uk/research/srg/netos/skywriting/",
packages = [ 'skywriting', 'skywriting.lang', 'skywriting.runtime',
'skywriting.runtime.master', 'skywriting.runtime.worker',
'skywriting.runtime.interactive' ],
package_dir = { '' : 'src/python' },
scripts = [ 'scripts/sw-master', 'scripts/sw-worker', 'scripts/sw-job', 'scripts/sw-console' ],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: POSIX',
'Topic :: Software Development :: Interpreters',
'Topic :: System :: Distributed Computing',
],
requires=['simplejson', 'CherryPy (>=3.1.0)' ]
)