-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (29 loc) · 1.1 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
import os
from setuptools import find_packages, setup
readme = os.path.join(os.path.dirname(__file__), 'README.md')
with open(readme) as fh:
long_description = fh.read()
setup(
name="netbox-paas",
version="0.3.5",
description="Enhances NetBox on CloudMyDC's PaaS with advanced management and control features.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Onemind-Services-LLC/netbox-paas/",
download_url="https://github.com/Onemind-Services-LLC/netbox-paas/",
author="Abhimanyu Saharan",
author_email="[email protected]",
maintainer="Abhimanyu Saharan",
maintainer_email="[email protected]",
install_requires=["py-jelastic", "croniter<3.0.0", "semver<4.0.0", "requirements-parser", "elastic-apm"],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platform=[],
keywords=["netbox", "netbox-plugin"],
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Programming Language :: Python :: 3",
],
)