forked from CloudGenix/cloudgenix_config
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.29 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.29 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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(name='cloudgenix_config',
version='1.9.0b2',
description='Configuration exporting and Continuous Integration (CI) capable configuration importing for the '
'CloudGenix Cloud Controller.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/CloudGenix/cloudgenix_config',
author='CloudGenix Developer Support',
author_email='developers@cloudgenix.com',
license='MIT',
install_requires=[
'cloudgenix >= 6.1.1b1, < 6.1.3b1',
'PyYAML >= 5.3'
],
packages=['cloudgenix_config'],
entry_points={
'console_scripts': [
'do_site = cloudgenix_config.do:go',
'pull_site = cloudgenix_config.pull:go',
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
]
)