-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.14 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
26
27
28
29
30
31
32
33
34
35
36
37
38
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
try:
fo = open('README.rst')
long_description = fo.read()
except:
long_description="""OFS - provides plugin-orientated low-level blobstore. """,
finally:
fo.close()
setup(
name="ofs",
version="0.4.1",
description="OFS - provides plugin-orientated low-level blobstore.",
long_description=long_description,
author="Ben O'Steen, Friedrich Lindenberg, Rufus Pollock",
author_email="[email protected]",
license="http://www.apache.org/licenses/LICENSE-2.0",
url="http://github.com/okfn/ofs",
packages=find_packages(),
test_suite = "test.test.TestPairtreeOFS",
install_requires = ["argparse"],
entry_points="""
[ofs.backend]
pairtree = ofs.local.pairtreestore:PTOFS
mdpairtree= ofs.local.metadatastore:MDOFS
s3 = ofs.remote.botostore:S3OFS
google = ofs.remote.botostore:GSOFS
s3bounce = ofs.remote.proxystore:S3Bounce
archive.org = ofs.remote.botostore:ArchiveOrgOFS
reststore = ofs.remote.reststore:RESTOFS
[console_scripts]
ofs_upload = ofs.command:ofs
"""
)