-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 719 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name="pytest-gc",
description="The garbage collector plugin for py.test",
long_description=open("README.rst").read(),
version="0.0.1",
author="Victor Titor",
author_email="vtitor.edumix@gmail.com",
url="https://github.com/vtitor/pytest-gc",
packages=["pytest_gc"],
entry_points={"pytest11": ["gc = pytest_gc:PluginLoader"]},
install_requires=["pytest", "six"],
tests_require=["pytest"],
extras_require={"dev": ["pre-commit", "black"]},
classifiers=[
"Framework :: Pytest",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
],
)