-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (34 loc) · 903 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
import setuptools
ver_globals = {}
with open("moo/version.py") as fp:
exec(fp.read(), ver_globals)
version = ver_globals["version"]
setuptools.setup(
name="moo",
version=version,
author="Brett Viren",
author_email="[email protected]",
description="Model oriented objects",
url="https://brettviren.github.io/moo",
packages=setuptools.find_packages(),
python_requires='>=3.5', # use of typing probably drive this
install_requires=[
"click",
#"jsonnet>=0.16.0",
"gojsonnet>=0.20.0",
"jinja2",
"anyconfig",
"jsonschema",
"fastjsonschema",
"jsonpointer",
"numpy",
"openpyxl", # make optional?
# "transitions",
],
entry_points = dict(
console_scripts = [
'moo = moo.__main__:main',
]
),
include_package_data=True,
)