-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (36 loc) · 1.38 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
from aiomultithreading import __version__, __author__
import pathlib
def main():
try:
long_description = (pathlib.Path("aiomultithreading").parent / "readme.md").open("r").read()
except Exception:
long_description = ""
setup(
install_requires=[
"aiothreading",
"aiomultiprocess",
],
name="aiomultithreading",
author=__author__,
version=__version__,
packages=find_packages(),
include_package_data=True,
description="AsyncIO, threading and multiprocessing combined to created a powerful executor",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["aiomultithreading", "multiprocessing", "threading", "asyncio"],
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)
if __name__ == "__main__":
main()