-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
50 lines (47 loc) · 1.5 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
40
41
42
43
44
45
46
47
48
49
50
import os
from setuptools import setup
version = open('VERSION', 'rb').read().decode('utf-8').strip()
long_description = open('README.md', 'rb').read().decode('utf-8')
setup(
name='pytest-pycodestyle',
version=version,
description='pytest plugin to run pycodestyle',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/henry0312/pytest-pycodestyle',
author='OMOTO Tsukasa',
author_email='[email protected]',
license='MIT',
package_dir={'': 'src'},
py_modules=['pytest_pycodestyle'],
python_requires='~=3.9',
install_requires=[
'pytest>=7.0',
'pycodestyle',
'py',
],
extras_require={
'tests': [
'pytest-isort',
],
},
# https://docs.pytest.org/en/latest/writing_plugins.html#making-your-plugin-installable-by-others
entry_points={
'pytest11': [
'pycodestyle = pytest_pycodestyle',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: MIT License',
'Framework :: Pytest',
'Programming Language :: Python :: 3',
'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',
],
)