This repository has been archived on 2025-06-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
compLIB/setup.py
joel 73284ceab8 removed .idea from git tracking
added new logging dependency
2021-01-16 21:21:00 +01:00

40 lines
994 B
Python

#!/usr/bin/env python3
import setuptools
import os
base_dir = os.path.dirname(__file__)
readme_path = os.path.join(base_dir, "README.md")
if os.path.exists(readme_path):
with open(readme_path) as stream:
long_description = stream.read()
else:
long_description = ""
setuptools.setup(
name="complib",
version="0.0.1",
author="F-WuTs",
author_email="--",
description="",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/F-WuTS/compLIB",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: Other/Proprietary License",
"Operating System :: Unix"
],
license="proprietary",
install_requires=[
"smbus",
"requests",
"python-logstash-async"
],
setup_requires=[
"smbus",
"requests",
"python-logstash-async"
]
)