|
6 | 6 | ROOT_DIR = os.path.abspath(os.path.dirname(__file__))
|
7 | 7 | REPO = "https://github.com/"
|
8 | 8 | repo = os.getenv("GITHUB_REPOSITORY", None) # in case this is published from a fork
|
9 |
| -REPO += "" if repo is None else repo |
10 |
| -if repo is None: |
11 |
| - REPO += "2bndy5/cpp-linter-action" |
| 9 | +REPO += "shenxianpeng/cpp-linter-action" if repo is None else repo |
12 | 10 |
|
13 | 11 |
|
14 | 12 | setup(
|
15 | 13 | name="cpp_linter",
|
16 | 14 | # use_scm_version=True,
|
17 | 15 | # setup_requires=["setuptools_scm"],
|
18 |
| - version="1.3.1", |
| 16 | + version="1.4.2", |
19 | 17 | description=__doc__,
|
20 |
| - long_description=".. warning:: this is not meant for PyPi (yet)", |
21 |
| - author="Brendan Doherty", |
| 18 | + long_description=( |
| 19 | + "A python package that powers the github action named cpp-linter-action. " |
| 20 | + + f"See `the github repository README <{REPO}#readme>`_ for full details." |
| 21 | + ), |
| 22 | + author="Brendan Doherty, Peter Shen", |
22 | 23 | author_email="2bndy5@gmail.com",
|
23 | 24 | install_requires=["requests", "pyyaml"], # pyyaml is installed with clang-tidy
|
24 | 25 | license="MIT",
|
25 | 26 | # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
26 | 27 | classifiers=[
|
27 |
| - "Development Status :: 1 - Production/Alpha", |
| 28 | + "Development Status :: 5 - Production/Stable", |
28 | 29 | "Intended Audience :: Developers",
|
29 | 30 | "License :: OSI Approved :: MIT License",
|
30 | 31 | "Programming Language :: Python :: 3",
|
|
0 commit comments