separate cli and gui application in own python packages. provide database schema as python package.
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
from setuptools import setup, find_packages
|
||||
import pathlib
|
||||
|
||||
here = pathlib.Path(__file__).parent.resolve()
|
||||
|
||||
long_description = ( here / "README.md").read_text(encoding="utf-8")
|
||||
|
||||
setup(
|
||||
name='kontor_video',
|
||||
version='0.1.0',
|
||||
description='Helper methods to download videos',
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
author='Thomas Peetz',
|
||||
classifiers=[
|
||||
"Development Status :: 3 - Alpha",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
],
|
||||
install_requires=["beautifulsoup4"],
|
||||
packages=find_packages(),
|
||||
)
|
||||
Reference in New Issue
Block a user