-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.04 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
37
38
from setuptools import setup, find_packages
import pathlib
# Get path to parent folder
here = pathlib.Path(__file__).parent.resolve()
# long_description = README.md
long_description = (here / 'README.md').read_text(encoding='utf-8')
github = 'https://github.com/emersonfelipesp/netbox-gpon'
setup(
name="netbox-gpon",
version="0.0.1",
author="Emerson Felipe",
author_email="[email protected]",
description="Netbox Plugin - GPON Health",
url=github,
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"Framework :: Django",
"Operating System :: Unix",
"License :: OSI Approved :: Apache Software License",
],
keywords="netbox netbox-plugin plugin zabbix zabbix-api api",
project_urls={
'Source': github,
},
packages=find_packages(),
include_package_data=True,
zip_safe=False,
package_data={
"": ['*','*/*','*/*/*'],
},
python_requires= '>=3.6',
)