-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (58 loc) · 2.08 KB
/
setup.py
File metadata and controls
64 lines (58 loc) · 2.08 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_namespace_packages
with open('README.rst', encoding='utf-8') as f:
readme = f.read()
# with open('LICENSE', encoding='utf-8') as f:
# license_text = f.read()
setup(
name='stackql-deploy',
version='1.9.2',
description='Model driven resource provisioning and deployment framework using StackQL.',
long_description=readme,
long_description_content_type='text/x-rst',
author='Jeffrey Aven',
author_email='javen@stackql.io',
url='https://github.com/stackql/stackql-deploy',
license='MIT',
packages=find_namespace_packages(include=['stackql_deploy*']),
package_data={
'stackql_deploy': [
'templates/**/*.template', # Include template files recursively
'inc/contributors.csv' # Fixed path for contributors
],
},
# Install shell completion scripts to system share directory
data_files=[
('share/stackql-deploy/completions', [
'shell_completions/stackql-deploy-completion.bash',
'shell_completions/stackql-deploy-completion.zsh',
'shell_completions/stackql-deploy-completion.fish',
'shell_completions/stackql-deploy-completion.ps1',
])
],
include_package_data=True,
install_requires=[
'click',
'python-dotenv',
'jinja2',
'pystackql>=3.8.1',
'PyYAML'
],
entry_points={
'console_scripts': [
'stackql-deploy = stackql_deploy.cli:cli',
],
},
classifiers=[
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'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 :: 3.12',
'Programming Language :: Python :: 3.13',
]
)