forked from mastbaum/dirt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (25 loc) · 867 Bytes
/
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "dirt",
version = "0.5",
author = "Andy Mastbaum",
author_email = "[email protected]",
description = ("A restful framework for oversight and tracking of remotely-executed jobs."),
license = "BSD",
keywords = "remote execution couchdb kanso",
url = "http://github.com/mastbaum/dirt",
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"License :: OSI Approved :: BSD License",
],
packages=['dirt'],
scripts=['bin/dirt'],
install_requires = ['couchdb', 'execnet'],
include_package_data = True,
package_data = {'project':'*'}
)