30 lines
791 B
Python
30 lines
791 B
Python
import setuptools
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name="ddOperApi", # Replace with your own username
|
|
version="0.0.3",
|
|
author="Marcel Nijenhof",
|
|
author_email="pip@pion.xs4all.nl",
|
|
description="Interface for dd-oper protocol",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://marceln.org/git/Werk/lmwsip",
|
|
packages=setuptools.find_packages(),
|
|
install_requires=[
|
|
'python-dateutil',
|
|
'requests',
|
|
'numpy',
|
|
'OpenSSL'
|
|
],
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: TODO",
|
|
"Operating System :: OS Independent",
|
|
"Topic :: dd-oper api"
|
|
],
|
|
python_requires='>=3.6',
|
|
)
|