diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index 5e000f6..0000000 --- a/MANIFEST.in +++ /dev/null @@ -1,6 +0,0 @@ -include README.md -include LICENSE -include requirements.txt -include config.py -recursive-include Test/ * -recursive-include StreamingCommunity/ *.py diff --git a/setup.py b/setup.py deleted file mode 100644 index f584896..0000000 --- a/setup.py +++ /dev/null @@ -1,33 +0,0 @@ -from setuptools import setup - - -def read_readme(): - with open("README.md", "r", encoding="utf-8") as fh: - return fh.read() - -with open("requirements.txt", "r", encoding="utf-8-sig") as f: - required_packages = f.read().splitlines() - print(required_packages) - -setup( - name="StreamingCommunity", - version="1.9.8", - long_description=read_readme(), - long_description_content_type="text/markdown", - author="Lovi-0", - url="https://github.com/Lovi-0/StreamingCommunity", - packages=["StreamingCommunity"], - install_requires=required_packages, - python_requires='>=3.8', - entry_points={ - "console_scripts": [ - "streamingcommunity=StreamingCommunity.run:main", - ], - }, - include_package_data=True, - keywords="streaming community", - project_urls={ - "Bug Reports": "https://github.com/Lovi-0/StreamingCommunity/issues", - "Source": "https://github.com/Lovi-0/StreamingCommunity", - } -)