-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 888 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="pytest-variant",
author="Balazs Eszes",
author_email="[email protected]",
description="Variant support for Pytest",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/c4deszes/pytest-variant",
packages=find_packages(),
license='MIT',
keywords=['pytest', 'variant'],
entry_points={
"pytest11": ["variant = pytest_variant.plugin"]
},
classifiers=[
"Framework :: Pytest",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
project_urls={
"Documentation": "https://github.com/c4deszes/pytest-variant",
"Source Code": "https://github.com/c4deszes/pytest-variant",
}
)