-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (32 loc) · 1.18 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
from setuptools import setup, find_packages
from aiothreading import __version__, __author__
import pathlib
def main():
try:
long_description = (pathlib.Path("aiothreading").parent / "readme.md").open("r").read()
except Exception:
long_description = ""
setup(
name="aiothreading",
author=__author__,
version=__version__,
packages=find_packages(),
include_package_data=True,
description="AsyncIO version of the standard threading module",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["aiothreading", "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()