41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
from os import path
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
README_rst = path.join(path.abspath(path.dirname(__file__)), "README.rst")
|
|
|
|
with open(README_rst, "r") as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name="pyee",
|
|
version="9.0.4",
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
description="A port of node.js's EventEmitter to python.",
|
|
long_description=long_description,
|
|
author="Josh Holbrook",
|
|
author_email="josh.holbrook@gmail.com",
|
|
url="https://github.com/jfhbrook/pyee",
|
|
license="MIT",
|
|
keywords=["events", "emitter", "node.js", "node", "eventemitter", "event_emitter"],
|
|
install_requires=["typing-extensions"],
|
|
tests_require=["twisted", "trio"],
|
|
classifiers=[
|
|
"Programming Language :: Python",
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.5",
|
|
"Programming Language :: Python :: 3.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Topic :: Other/Nonlisted Topic",
|
|
],
|
|
)
|