-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
36 lines (33 loc) · 1.27 KB
/
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
36
from setuptools import setup
REQUIREMENTS = ['pytest', 'six']
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), 'rb') as f:
long_description = f.read().decode('utf8')
setup(
name='pytest-parametrization',
version='2022.2.1',
py_modules=['parametrization'],
provides=['parametrization'],
description='Simpler PyTest parametrization',
long_description=long_description,
long_description_content_type='text/markdown',
author="Singular Labs, Inc",
author_email='devs@singular.net',
url='https://github.com/singular-labs/parametrization',
keywords="pytest, parametrize, parametrization, singular",
install_requires=REQUIREMENTS,
license="MIT License",
python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)