mirror of
https://github.com/lucaspalomodevelop/netbox-acls.git
synced 2026-03-13 07:29:40 +00:00
50 lines
1.3 KiB
Python
50 lines
1.3 KiB
Python
"""
|
|
Configuration for setuptools.
|
|
"""
|
|
import codecs
|
|
import os.path
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
script_dir = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
with open(os.path.join(script_dir, "README.md"), encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
|
|
def read(relative_path):
|
|
"""
|
|
Read a file and return its contents.
|
|
"""
|
|
with codecs.open(os.path.join(script_dir, relative_path), "r") as fp:
|
|
return fp.read()
|
|
|
|
|
|
def get_version(relative_path):
|
|
"""
|
|
Extract the version number from a file without importing it.
|
|
"""
|
|
for line in read(relative_path).splitlines():
|
|
if not line.startswith("__version__"):
|
|
raise RuntimeError("Unable to find version string.")
|
|
delim = '"' if '"' in line else "'"
|
|
return line.split(delim)[1]
|
|
|
|
|
|
setup(
|
|
name="netbox-acls",
|
|
version=get_version("netbox_acls/version.py"),
|
|
description="A NetBox plugin for Access List management",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/ryanmerolle/netbox-acls",
|
|
install_requires=[],
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
classifiers=[
|
|
"Framework :: Django",
|
|
"Programming Language :: Python :: 3",
|
|
],
|
|
)
|