forked from benosteen/checkm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
19 lines (17 loc) · 1.54 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(name="Checkm",
version="0.3.1",
description="Checkm - create reports on the checksums of sets of files or URLs resources.",
long_description="""\
From - http://www.cdlib.org/inside/diglib/checkm/checkmspec.html - Checkm is a general-purpose text-based file manifest format. Each line of a Checkm manifest is a set of whitespace-separated tokens, the first of which identifies the corresponding digital content by filename or URL. Other tokens identify digest algorithm, checksum, content length, and modification time. Tokens may be left unspecified with '-', the degenerate case being a simple file list. It is up to tools that use the Checkm format to specify any further restrictions on tokens (e.g., allowed defaults and digest algorithms) and overall manifest completeness and coherence. Checkm is designed to support tools that verify the bit-level integrity of groups of files in support of such things as content fixity, replication, import, and export. A manifest may be single-level or multi-level (hierarchical), the latter being useful, for example, in harvesting material from very large web sites (cf. sitemaps).
""",
maintainer="Ben O'Steen",
maintainer_email="bosteen@gmail.com",
scripts = ['bin/checkm', 'bin/bagitmanifest'],
url="http://packages.python.org/Checkm/",
license="http://www.apache.org/licenses/LICENSE-2.0",
packages=find_packages(),
test_suite = "tests.test.TestCheckm",
)