forked from UCL-dataspring/cluster-code
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 loc) · 913 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 = "bluclobber",
version = "0.0.1",
author = "James Hetherington",
author_email = "j.hetherington@ucl.ac.uk",
description = ("Harness for cluster map/reduce analysis of ALTO books corpus"),
license = "BSD",
keywords = "digital humanities research books",
url = "http://development.rc.ucl.ac.uk/",
packages=['bluclobber'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Topic :: Research :: Humanities",
"License :: OSI Approved :: BSD License",
],
entry_points={
'console_scripts': [
'bluclobber = bluclobber.harness.query:main',
'bluclobber_repartition = bluclobber.harness.repartition:main'
]
},
)