-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (35 loc) · 999 Bytes
/
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
from setuptools import find_packages, setup
VERSION = "0.0.1"
with open("README.md", "r") as readme:
long_description = readme.read()
with open("LICENSE", "r") as license_file:
license = license_file.read()
setup(
name="aioemit",
version=VERSION,
description="A minimalistic async event bus implementation",
author="iunary",
license=license,
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[],
keywords=[
"emitter",
"event bus",
"pubsub",
"async",
"subscribe",
"emit",
"publish",
"aioemit",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
)