-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
27 lines (26 loc) · 825 Bytes
/
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
from setuptools import find_packages, setup
setup(
name='netbox-plugin-extensions',
version='1.2.0',
description='NetBox Plugin Extensions',
long_description='Wrappers for Netbox Generic Objects',
url='https://github.com/dansheps/netbox-plugin-extensions/',
download_url='https://pypi.org/project/netbox-plugin-extensions/',
author='Daniel Sheppard',
author_email='[email protected]',
maintainer='Daniel Sheppard',
maintainer_email='[email protected]',
license='All rights reserved',
platform=[],
keywords=['netbox', 'netbox-plugin'],
classifiers=[
'Framework :: Django',
'Programming Language :: Python :: 3',
],
install_requires=[
'importlib',
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)