-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (46 loc) · 1.53 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
41
42
43
44
45
46
47
48
49
50
from setuptools import find_packages, setup
def get_devtools_packages():
return [f"snowflake.{pkg}" for pkg in find_packages(where="src/snowflake")]
setup(
name="snowpark-python-devtools",
version="0.1.0",
license="Apache License, Version 2.0",
description="Snowflake Snowpark Python DevTools",
packages=get_devtools_packages(),
package_dir={
"": "src",
},
python_requires=">=3.7",
install_requires=[
"PyYAML",
"wrapt",
"six>=1.5",
"yarl",
"pytest",
],
extras_require={
"development": ["snowflake-connector-python[pandas]"],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
],
entry_points={
"pytest11": [
"snowpark-python-devtools = snowflake.devtools.snowpark_pytest_plugin",
],
},
)