-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
39 lines (33 loc) · 1.04 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
37
38
39
from setuptools import setup
def get_long_description() -> str:
with open('README.md') as f:
return f.read()
package_name = 'pytest_network'
setup(
name=package_name,
version='0.0.2',
author='Artem Lomonosov',
author_email='[email protected]',
maintainer='Artem Lomonosov',
maintainer_email='[email protected]',
license='MIT',
url='https://github.com/best-doctor/pytest_network',
description='A simple plugin to disable network on socket level.',
long_description=get_long_description(),
long_description_content_type='text/markdown',
py_modules=[package_name],
install_requires=['pytest>=5.3.1'],
classifiers=[
'Framework :: Pytest',
'Topic :: Software Development :: Testing',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
entry_points={
'pytest11': [
'network = pytest_network',
],
},
)