-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (41 loc) · 1.69 KB
/
Copy pathsetup.py
File metadata and controls
46 lines (41 loc) · 1.69 KB
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
37
38
39
40
41
42
43
44
45
46
import os
from setuptools import setup
import nrt_pytest_soft_asserts
PATH = os.path.dirname(__file__)
with open(os.path.join(PATH, 'requirements.txt')) as f:
requirements = f.read().splitlines()
with open(os.path.join(PATH, 'README.md')) as f:
readme = f.read()
setup(
name='nrt-pytest-soft-asserts',
version=nrt_pytest_soft_asserts.__version__,
author='Eyal Tuzon',
author_email='eyal.tuzon.dev@gmail.com',
description='Soft asserts for pytest',
keywords='python python3 python-3 pytest soft assert asserts assertion'
' assertions soft-assert soft-asserts soft-assertion soft-assertions'
'test test-framework unit-test',
long_description_content_type='text/markdown',
long_description=readme,
url='https://github.com/etuzon/python-nrt-pytest-soft-asserts',
packages=['nrt_pytest_soft_asserts'],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: Pytest',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Testing :: Unit',
'Topic :: Software Development :: Libraries',
'Development Status :: 5 - Production/Stable'
],
install_requires=[requirements],
data_files=[('', ['requirements.txt'])],
)