-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.15 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.15 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="skilletlib",
version="1.2.3",
author="Nathan Embery",
author_email="nembery@paloaltonetworks.com",
description="Tools for working with PAN-OS Skillets in Python 3",
license='Apache 2.0',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/paloaltonetworks/skilletlib",
packages=setuptools.find_packages(),
include_package_data=True,
package_data={'assets': ['skilletlib/assets/**/*.yaml', 'skilletlib/assets/**/*.xml']},
install_requires=[
"oyaml",
"docker",
"pan-python",
"jinja2==3.0.1",
"pyyaml",
"xmldiff",
"xmltodict",
"requests-toolbelt",
"requests",
"jsonpath_ng",
"passlib",
"GitPython",
"jinja2-ansible-filters",
"jmespath"
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
python_requires='>=3.6',
)