-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
41 lines (32 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
30
31
32
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
from setuptools import setup
import os.path
base_dir = os.path.dirname(__file__)
about = dict()
with open(os.path.join(base_dir, "zschema", "__init__.py")) as f:
exec(f.read(), about)
setup(
name = "zschema",
description = "A schema language for JSON documents that allows validation and compilation into various database engines",
version = about["__version__"],
license = about["__license__"],
author = about["__author__"],
author_email = about["__email__"],
keywords = "python json schema bigquery elasticsearch",
install_requires = [
"future",
"python-dateutil",
"pytz",
"six",
],
packages = [
"zschema",
],
entry_points={
'console_scripts': [
'zschema = zschema.__main__:main',
]
},
tests_require = [ 'nose' ],
test_suite = 'nose.collector'
)