-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 853 Bytes
/
setup.py
File metadata and controls
35 lines (34 loc) · 853 Bytes
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
from setuptools import setup
import os
setup(
name = "merky",
version = "0.1.1",
author = "Ethan Rowe",
author_email = "ethan@the-rowes.com",
description = ("JSON-oriented merkle tree utilities"),
license = "MIT",
url = "https://github.com/ethanrowe/python-merky",
packages = ["merky",
"merky.cases",
"merky.store",
"merky.test",
"merky.test.misc",
"merky.test.store",
"merky.test.usecases",
],
long_description = """
Merky - compute merkle trees for JSON-friendly data.
""",
test_suite = "nose.collector",
install_requires = [
'six >= 1.5',
],
setup_requires = [
'nose',
'mock >= 1.0.1',
],
tests_require = [
'nose',
'mock >= 1.0.1',
],
)