forked from mastbaum/cog
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (25 loc) · 881 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
import os
import tarfile
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "cog",
version = "0.6",
author = "Andy Mastbaum",
author_email = "[email protected]",
description = ("An automatic testing utility for SNO+ code"),
license = "BSD",
keywords = "continuous integration couchdb build test",
url = "http://github.com/mastbaum/cog",
long_description = read('README.md'),
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"License :: OSI Approved :: BSD License",
],
packages = ['cog', 'cog.tasks'],
scripts = ['bin/cog', 'bin/q', 'bin/qsetup', 'bin/sbatch.scr'],
install_requires = ['couchdb', 'sphinx'],
include_package_data = True
)