-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
36 lines (34 loc) · 1.3 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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(name='prisma_config',
version='6.5.1b1',
description='Configuration exporting and Continuous Integration (CI) capable configuration importing for the '
'Prisma SDWAN Cloud Controller.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/PaloAltoNetworks/prisma_config',
author='Prisma SASE Developer Support',
author_email='[email protected]',
license='MIT',
install_requires=[
'prisma_sase >= 6.5.1b1, < 6.5.2b1',
'PyYAML >= 5.3'
],
packages=['prisma_config'],
entry_points={
'console_scripts': [
'do_site = prisma_config.do:go',
'pull_site = prisma_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"
]
)