initial commit

This commit is contained in:
Johannes Erwerle 2022-03-29 15:13:31 +02:00
commit 4742e417f7
7 changed files with 345 additions and 0 deletions

19
setup.py Normal file
View file

@ -0,0 +1,19 @@
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
setup(
name='ilias_sync2',
version="0.0.1",
packages=find_packages(),
url="",
author='Johannes Erwerle',
author_email='jo@swagsapce.org',
description="A library to synchronize the content of ILIAS to a directory",
include_package_data=True,
zip_safe=False,
long_description=readme,
install_requires=["bs4", "requests"],
long_description_content_type="text/markdown",
)