19 lines
514 B
Python
19 lines
514 B
Python
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",
|
|
)
|