-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathsetup.py
More file actions
105 lines (96 loc) · 3.21 KB
/
Copy pathsetup.py
File metadata and controls
105 lines (96 loc) · 3.21 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#!/usr/bin/env python
#
# Copyright (C) 2021 Databricks, Inc.
#
# Licensed under the Databricks License;
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://github.com/databricks-industry-solutions/pixels/blob/main/LICENSE
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
from __future__ import print_function
import sys
from io import open
from os import path
from setuptools import setup
with open("requirements.txt") as f:
required = f.read().splitlines()
DESCRIPTION = "Pixels: pyspark dataframes for image (and object) processing"
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
try:
exec(open("src/dbx/pixels/version.py").read())
except IOError:
print(
"Failed to load pixels version file for packaging. You must be in pixels root dir.",
file=sys.stderr,
)
sys.exit(-1)
VERSION = __version__ # noqa
from setuptools import find_packages
setup(
name="databricks-pixels",
author="Databricks",
author_email="pixels@databricks.com",
license="https://github.com/databricks-industry-solutions/pixels/blob/main/LICENSE",
url="https://github.com/databricks-industry-solutions/pixels",
project_urls={
"Bug Tracker": "https://github.com/databricks-industry-solutions/pixels/issues",
"Documentation": "https://databricks-pixels.readthedocs.io/",
"Source Code": "https://github.com/databricks-industry-solutions/pixels",
},
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
version=VERSION,
package_dir={"": "src"},
packages=find_packages(where="src"),
platforms=["any"],
python_requires=">=3.10",
use_scm_version={
"write_to": "src/dbx/pixels/version.py",
"fallback_version": "0.0.0",
"local_scheme": "no-local-version",
},
setup_requires=["setuptools_scm"],
install_requires=required,
include_package_data=True,
package_data={
"dbx.pixels": [
"resources/**/*.sql",
"resources/**/*.txt",
"resources/**/*.json",
"resources/**/*.ndjson",
"resources/**/*.css",
"resources/**/*.html",
"resources/**/*.js",
"resources/**/*.svg",
"resources/**/*.jp2",
"resources/**/UI_VERSION",
]
},
extras_require={
"dev": [
"databricks-connect==16.1.0",
"databricks-sdk==0.88.0",
"autoflake==2.3.1",
"black==24.10.0",
"isort==6.0.1",
"mypy==1.14.1",
"pdoc==15.0.1",
"pre-commit==4.1.0",
"coverage[toml]==7.6.10",
"pytest==8.3.4",
"pytest-cov==4.1.0",
"pytest-mock==3.14.0",
"build==1.5.0",
],
},
)