-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (53 loc) · 1.89 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
51
52
53
54
55
56
import os
from setuptools import (
find_namespace_packages,
setup,
)
DESCRIPTION = 'Snowflake Native App Permission SDK Stub'
LONG_DESCRIPTION = 'This package provides a set of stub functions that replaces the permissions SDK for local testing'
SNOWFLAKE_PERMISSIONS_SRC_DIR = os.path.join("src", "snowflake")
def get_version():
version = {}
with open('src/snowflake/version.py') as fp:
exec(fp.read(), version)
return version['__version__']
setup(
name="snowflake-native-apps-permission-stub",
version=get_version(),
author='Snowflake, Inc',
author_email='[email protected]',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
install_requires=[
'setuptools >= 40.0.0',
],
packages=find_namespace_packages(
where='src'
),
package_dir={
'': 'src',
},
keywords='Snowflake db database cloud warehouse permissions sdk native apps',
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Console",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: SQL",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Database",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
],
zip_safe=True,
)