-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
13 lines (11 loc) · 6.78 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
from setuptools import find_packages
from setuptools import setup
packages = find_packages()
setup(
author="somewheve",
description="An easy use Event engine based on asyncio, just so so...",
version="0.2",
author_email='[email protected]',
packages=packages,
name="async_event" ,
)