1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

31 lines
808 B
Python
Raw Normal View History

# Standard Library Imports
2019-07-29 22:13:11 -07:00
import sys
from distutils.core import setup
2019-07-29 22:13:11 -07:00
if sys.version_info < (3, 7):
sys.exit("Python 3.7+ is required.")
2019-07-29 22:13:11 -07:00
with open("README.md", "r") as ld:
long_description = ld.read()
with open("requirements.txt", "r") as req:
requirements = req.read().split("\n")
desc = "hyperglass is a modern, customizable network looking glass written in Python 3."
2019-07-29 22:13:11 -07:00
setup(
name="hyperglass",
version="1.0.0",
author="Matt Love",
author_email="matt@hyperglass.io",
description=desc,
2019-07-29 22:13:11 -07:00
url="https://github.com/checktheroads/hyperglass",
python_requires=">=3.7",
2019-07-29 22:13:11 -07:00
packages=["hyperglass"],
install_requires=requirements,
2019-07-29 22:13:11 -07:00
license="BSD 3-Clause Clear License",
long_description=long_description,
long_description_content_type="text/markdown",
)