-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
40 lines (37 loc) · 1.85 KB
/
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
import io
import pathlib
from setuptools import setup, find_packages
version_data = {}
version_file = pathlib.Path(__file__).parent / 'azure_dbr_scim_sync/version.py'
with version_file.open('r') as f:
exec(f.read(), version_data)
setup(name="azure_dbr_scim_sync",
version=version_data['__version__'],
packages=find_packages(exclude=["tests", "*tests.*", "*tests"]),
python_requires=">=3.10",
install_requires=[
"pydantic==2.6.4", "pyyaml==6.0.1", "databricks-sdk==0.33.0", "requests", "click==8.1.7",
"databricks-labs-blueprint==0.9.0", "fsspec==2023.9.2", "adlfs==2023.9.0", "azure-identity==1.15.0"
],
extras_require={
"dev": [
"pytest==7.4.2", "pytest-cov==4.1.0", "pytest-xdist",
"pytest-mock", "yapf", "pycodestyle", "autoflake", "isort", "wheel",
"pytest-approvaltests==0.2.4", "pylint==3.0.3", "pyright==1.1.372"
],
},
entry_points={'console_scripts': ['azure_dbr_scim_sync=azure_dbr_scim_sync.cli:sync_cli']},
author="Grzegorz Rusin",
author_email="grzegorz.rusin@databricks.com",
description="Azure Databricks SCIM Sync",
long_description=io.open("README.md", encoding="utf-8").read(),
long_description_content_type='text/markdown',
keywords="Azure Databricks SCIM Sync",
classifiers=[
"Development Status :: 4 - Beta", "Intended Audience :: Developers",
"Intended Audience :: Science/Research", "Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",
"Operating System :: OS Independent"
])