-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
executable file
·35 lines (31 loc) · 972 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
32
33
34
35
#!/usr/bin/env python
from setuptools import setup, find_packages
import versioneer
with open('README.rst', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='pytest-curio',
version=versioneer.get_version(),
packages=find_packages(),
url='https://github.com/johnnoone/pytest-curio',
license='Apache License 2.0',
author='Xavier Barbosa',
author_email='[email protected]',
description='Pytest support for curio.',
long_description=long_description,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Testing",
],
install_requires=[
'pytest',
'curio'
],
entry_points={
'pytest11': ['curio = pytest_curio.plugin'],
},
cmdclass=versioneer.get_cmdclass()
)