• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Snayt1k3 / shiki.py / 8957499950

05 May 2024 10:16AM UTC coverage: 96.432% (-0.04%) from 96.472%
8957499950

push

github

Snayt1k3
fix setup.py description

0 of 3 new or added lines in 1 file covered. (0.0%)

1 existing line in 1 file now uncovered.

4649 of 4821 relevant lines covered (96.43%)

0.96 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/setup.py
1
from codecs import open
×
2
from pathlib import Path
×
3

4
import tomli
×
NEW
5
from setuptools import setup, find_packages
×
6

7
with open("pyproject.toml", "rb") as f:
×
8
    pyproject = tomli.load(f)
×
9

10

NEW
11
def get_long_description() -> str:
×
NEW
12
    return (Path(__file__).parent / "README.md").read_text()
×
13

UNCOV
14
extra_requirements = {
×
15
    "readthedocs": [
16
        "furo",
17
        "readthedocs-sphinx-search",
18
        "Sphinx",
19
        "sphinx-hoverxref",
20
    ]
21
}
22

23
setup(
×
24
    name=pyproject["tool"]["poetry"]["name"],
25
    version=pyproject["tool"]["poetry"]["version"],
26
    packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
27
    extras_require=extra_requirements,
28
    install_requires=["aiohttp>=3.9.1", "tomli>=2.0.1", "setuptools>=69.0.3"],
29
    author="Snayt1k3",
30
    author_email="snayt1k3@gmail.com",
31
    description=pyproject["tool"]["poetry"]["description"],
32
    long_description_content_type="text/markdown",
33
    long_description=get_long_description(),
34
    url="https://github.com/Snayt1k3/shiki.py",
35
    classifiers=[
36
        "License :: OSI Approved :: MIT License",
37
        "Programming Language :: Python :: 3",
38
        "Programming Language :: Python :: 3.10",
39
        "Programming Language :: Python :: 3.11",
40
        "Programming Language :: Python :: 3.12",
41
    ],
42
)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc