|
1 | | -#!/usr/bin/env python |
| 1 | +""" |
| 2 | +Only a compatibility placeholder |
| 3 | +https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html |
| 4 | +""" |
2 | 5 |
|
3 | | -from os import path |
| 6 | +from setuptools import setup |
4 | 7 |
|
5 | | -from setuptools import find_packages, setup |
6 | | - |
7 | | -here = path.abspath(path.dirname(__file__)) |
8 | | -with open(path.join(here, "README.md")) as fin: |
9 | | - long_description = fin.read() |
10 | | - |
11 | | - |
12 | | -setup( |
13 | | - name="pylint-pytest", |
14 | | - version="1.1.7", |
15 | | - author="Stavros Ntentos", |
16 | | - author_email="133706+stdedos@users.noreply.github.com", |
17 | | - license="MIT", |
18 | | - url="https://github.com/pylint-dev/pylint-pytest", |
19 | | - project_urls={ |
20 | | - "Changelog": "https://github.com/pylint-dev/pylint-pytest/blob/master/CHANGELOG.md", |
21 | | - "Documentation": "https://github.com/pylint-dev/pylint-pytest#readme", |
22 | | - "Say Thanks!": "https://saythanks.io/to/stdedos", |
23 | | - "Source": "https://github.com/pylint-dev/pylint-pytest", |
24 | | - "Tracker": "https://github.com/pylint-dev/pylint-pytest/issues", |
25 | | - }, |
26 | | - description="A Pylint plugin to suppress pytest-related false positives.", |
27 | | - long_description=long_description, |
28 | | - long_description_content_type="text/markdown", |
29 | | - packages=find_packages(exclude=["tests*", "sandbox"]), |
30 | | - install_requires=[ |
31 | | - "pylint>=2", |
32 | | - "pytest>=4.6", |
33 | | - ], |
34 | | - python_requires=">=3.8", |
35 | | - classifiers=[ |
36 | | - "Development Status :: 5 - Production/Stable", |
37 | | - "Intended Audience :: Developers", |
38 | | - "Topic :: Software Development :: Testing", |
39 | | - "Topic :: Software Development :: Quality Assurance", |
40 | | - "Programming Language :: Python", |
41 | | - "Programming Language :: Python :: 3", |
42 | | - "Programming Language :: Python :: 3.8", |
43 | | - "Programming Language :: Python :: 3.9", |
44 | | - "Programming Language :: Python :: 3.10", |
45 | | - "Programming Language :: Python :: 3.11", |
46 | | - "Programming Language :: Python :: Implementation :: CPython", |
47 | | - "Operating System :: OS Independent", |
48 | | - "License :: OSI Approved :: MIT License", |
49 | | - ], |
50 | | - tests_require=["pytest", "pytest-cov", "pylint"], |
51 | | - keywords=["pylint", "pytest", "plugin"], |
52 | | -) |
| 8 | +setup() |
0 commit comments