structio/setup.py

24 lines
803 B
Python
Raw Normal View History

2023-05-15 18:25:02 +02:00
import setuptools
if __name__ == "__main__":
2023-06-16 14:58:28 +02:00
with open("README.md", "r") as readme:
long_description = readme.read()
2023-05-15 18:25:02 +02:00
setuptools.setup(
2023-06-16 14:58:28 +02:00
name="structured-io",
2023-05-15 18:25:02 +02:00
version="0.1.0",
2023-06-16 14:58:28 +02:00
author="nocturn9x",
2023-05-15 18:25:02 +02:00
author_email="nocturn9x@nocturn9x.space",
2023-06-16 14:58:28 +02:00
description="An experimental structured concurrency framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://git.nocturn9x.space/nocturn9x/structio",
2023-05-15 18:25:02 +02:00
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
2023-06-16 14:58:28 +02:00
"License :: OSI Approved :: Apache Software License",
2023-05-15 18:25:02 +02:00
],
python_requires=">=3.10",
2023-06-16 14:58:28 +02:00
)