forked from DanSheps/netbox-routing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 820 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-routing',
version='0.0.3',
description='NetBox Routing',
long_description='Plugin for documentation of routing configuration and objects',
url='https://github.com/dansheps/netbox-routing/',
download_url='https://pypi.org/project/netbox-routing/',
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=[
'django-polymorphic',
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)