Files
lmwsip/setup.py
Marcel Nijenhof 2281ef9427
Some checks failed
continuous-integration/drone/push Build is failing
Cleanup & correctie tests
2020-09-08 17:19:47 +02:00

24 lines
694 B
Python

import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="lmwsip", # Replace with your own username
version="0.0.4",
author="Marcel Nijenhof",
author_email="pip@pion.xs4all.nl",
description="Interface for the lmw sip protocol",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://marceln.org/git/Werk/lmwsip",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: TODO",
"Operating System :: OS Independent",
"Topic :: Lmw sip interface"
],
python_requires='>=3.6',
)