-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
52 lines (48 loc) · 1.57 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_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.8.0',
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='[email protected]',
url='https://github.com/stackql/stackql-deploy',
license='MIT',
packages=find_packages(),
package_data={
'stackql_deploy': [
'templates/**/*.template', # Include template files recursively
],
},
include_package_data=True,
install_requires=[
'click',
'python-dotenv',
'jinja2',
'pystackql>=3.6.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',
'License :: OSI Approved :: MIT License',
]
)