-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
13 lines (11 loc) · 6.78 KB
/
setup.py
File metadata and controls
13 lines (11 loc) · 6.78 KB
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='somewheve@gmail.com',
packages=packages,
name="async_event" ,
)