forked from rockem/busypie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 942 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
readme = fh.read()
setup(
name="busypie",
version="0.5.1",
author="Eli Segal",
author_email="[email protected]",
license='Apache License 2.0',
description="Easy and expressive busy-waiting for Python",
long_description=readme,
long_description_content_type="text/markdown",
keywords="busy wait tdd test builder sleep wait pytest",
url="https://github.com/rockem/busypie",
packages=find_packages(exclude=['tests*']),
setup_requires=["pytest-runner"],
tests_require=[
'pytest==7.4.4',
'pytest-asyncio==0.21.1',
'pytest-timeout==2.2.0',
'dataclasses==0.6'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)