-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 997 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
28
29
30
31
from setuptools import setup, find_packages
version = '0.0.1'
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='netbox-plugin-circuit-map',
version=version,
description='A simple circuit map with filter criteria',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
author='Per von Zweigbergk',
author_email='[email protected]',
url='https://github.com/pv2b/netbox-plugin-circuit-map',
download_url='https://github.com/pv2b/netbox-plugin-circuit-map/archive/v{}.zip'.format(version),
python_requires='>3.10',
classifiers=[
'Environment :: Plugins',
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration'
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)