|
1 | | -#!/usr/bin/env python |
| 1 | +from setuptools import setup |
2 | 2 |
|
3 | | -from os import path |
4 | | - |
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.2", |
15 | | - author="Reverb Chu", |
16 | | - author_email="pylint-pytest@reverbc.tw", |
17 | | - maintainer="Reverb Chu", |
18 | | - maintainer_email="pylint-pytest@reverbc.tw", |
19 | | - license="MIT", |
20 | | - url="https://github.com/reverbc/pylint-pytest", |
21 | | - description="A Pylint plugin to suppress pytest-related false positives.", |
22 | | - long_description=long_description, |
23 | | - long_description_content_type="text/markdown", |
24 | | - packages=find_packages(exclude=["tests", "sandbox"]), |
25 | | - install_requires=[ |
26 | | - "pylint<3", |
27 | | - "pytest>=4.6", |
28 | | - ], |
29 | | - python_requires=">=3.6", |
30 | | - classifiers=[ |
31 | | - "Development Status :: 5 - Production/Stable", |
32 | | - "Intended Audience :: Developers", |
33 | | - "Topic :: Software Development :: Testing", |
34 | | - "Topic :: Software Development :: Quality Assurance", |
35 | | - "Programming Language :: Python", |
36 | | - "Programming Language :: Python :: 3", |
37 | | - "Programming Language :: Python :: 3.6", |
38 | | - "Programming Language :: Python :: 3.7", |
39 | | - "Programming Language :: Python :: 3.8", |
40 | | - "Programming Language :: Python :: 3.9", |
41 | | - "Programming Language :: Python :: 3.10", |
42 | | - "Programming Language :: Python :: 3.11", |
43 | | - "Programming Language :: Python :: Implementation :: CPython", |
44 | | - "Operating System :: OS Independent", |
45 | | - "License :: OSI Approved :: MIT License", |
46 | | - ], |
47 | | - tests_require=["pytest", "pytest-cov", "pylint"], |
48 | | - keywords=["pylint", "pytest", "plugin"], |
49 | | -) |
| 3 | +setup() |
0 commit comments