-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 863 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
from setuptools import setup
import os.path
current_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(current_dir, 'README.md')) as rdr:
long_description = rdr.read()
setup(name='libevent',
version='0.7.0',
description='Library for sending events',
long_description=long_description,
url='http://github.com/adamvinueza/libevent',
author='Adam Vinueza',
author_email='[email protected]',
license='MIT',
packages=['libevent'],
package_data={
'libevent': ['py.typed']
},
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
zip_safe=False)