-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
65 lines (63 loc) · 2.04 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
57
58
59
60
61
62
63
64
65
from setuptools import find_packages, setup
setup(
name="titan-core",
# Package version is managed by the string inside version.md. By default,
# setuptools doesnt copy this file into the build package. So we direct
# setuptools to include it using the `include_package_data=True` option
# as well as the MANIFEST.in file which has the `include version.md` directive.
version=open("version.md", encoding="utf-8").read().split(" ")[2],
include_package_data=True,
description="Titan Core: Snowflake infrastructure as code",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/Titan-Systems/titan",
author="TJ Murphy",
packages=find_packages(include=["titan", "titan.*"]),
python_requires=">=3.9",
project_urls={
"Homepage": "https://github.com/Titan-Systems/titan",
},
entry_points={
"console_scripts": [
"titan=titan.cli:titan_cli",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: SQL",
"Topic :: Database",
],
install_requires=[
"click>=8.1.7",
"inflection>=0.5.1",
"pyparsing>=3.0.9",
"pyyaml",
"snowflake-connector-python>=3.7.0",
"snowflake-snowpark-python>=1.14.0",
"jinja2",
"pathspec",
],
extras_require={
"dev": [
"black",
"build",
"codespell==2.2.6",
"mypy",
"pytest-cov",
"pytest-profiling!=1.8.0",
"pytest-xdist",
"pytest>=6.0",
"python-dotenv",
"ruff",
"snowflake-cli-labs",
"tabulate",
"twine!=5.1.0",
"types-pytz",
"types-pyyaml",
]
},
)