This repository has been archived on 2023-05-12. You can view files and clone it, but cannot push or open issues or pull requests.
aiosched/setup.py

24 lines
770 B
Python
Raw Permalink Normal View History

2022-10-18 15:55:43 +02:00
import setuptools
if __name__ == "__main__":
with open("README.md", "r") as readme:
long_description = readme.read()
setuptools.setup(
name="aiosched",
version="0.1.0",
author="Nocturn9x",
author_email="hackhab@gmail.com",
2022-10-18 15:59:53 +02:00
description="Yet another Python async scheduler",
2022-10-18 15:55:43 +02:00
long_description=long_description,
long_description_content_type="text/markdown",
url="https://git.nocturn9x.space/nocturn9x/aiosched",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache License 2.0",
],
python_requires=">=3.8",
)