forked from zmap/zschema
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 687 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (24 loc) · 687 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
from setuptools import setup
import zschema
setup(
name = "zschema",
description = "A schema language for JSON documents that allows validation and compilation into various database engines",
version = zschema.__version__,
license = zschema.__license__,
author = zschema.__author__,
author_email = zschema.__email__,
keywords = "python json schema bigquery elastic search",
install_requires = [
"python-dateutil"
],
packages = [
"zschema"
],
entry_points={
'console_scripts': [
'zschema = zschema.__main__:main',
]
},
tests_require = [ 'nose' ],
test_suite = 'nose.collector'
)