|
1 |
| -#!/usr/bin/env python |
2 |
| - |
3 |
| -from os import path |
4 |
| - |
5 | 1 | from setuptools import find_packages, setup
|
6 | 2 |
|
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 | 3 | setup(
|
13 |
| - name="pylint-pytest", |
14 |
| - version="1.1.3", |
15 |
| - author="Stavros Ntentos", |
16 |
| - |
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 | 4 | packages=find_packages(exclude=["tests*", "sandbox"]),
|
30 |
| - install_requires=[ |
31 |
| - "pylint<4", |
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 :: 3.12", |
47 |
| - "Programming Language :: Python :: Implementation :: CPython", |
48 |
| - "Operating System :: OS Independent", |
49 |
| - "License :: OSI Approved :: MIT License", |
50 |
| - ], |
51 | 5 | tests_require=["pytest", "pytest-cov", "pylint"],
|
52 |
| - keywords=["pylint", "pytest", "plugin"], |
53 | 6 | )
|
0 commit comments