forked from asenac/materialize-scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (31 loc) · 968 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
# Copyright Materialize, Inc. and contributors. All rights reserved.
#
# Use of this software is governed by the Business Source License
# included in the LICENSE file at the root of this repository.
#
# As of the Change Date specified in that file, in accordance with
# the Business Source License, use of this software will be governed
# by the Apache License, Version 2.0.
from setuptools import find_packages, setup
setup(
name="mzt",
version="0.0.1",
description="Materialize developer tools",
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={
"mzt.explain.repository": ["*.xml", "*.xsl", "*.css", "*.js", "*.svg", "*.png"],
},
install_requires=[
"click==8.0.3",
"lxml==4.7.1",
"pandas==1.5.0",
"psycopg2-binary==2.9.1",
"types-pkg-resources==0.1.3",
],
entry_points={
"console_scripts": [
"mzt=mzt:main",
],
},
)