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

Snayt1k3 / shiki.py / 8952237248

04 May 2024 05:44PM UTC coverage: 96.472% (+0.1%) from 96.352%
8952237248

push

github

Snayt1k3
update docs

4649 of 4819 relevant lines covered (96.47%)

0.96 hits per line

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

0.0
/setup.py
1
from setuptools import setup, find_packages
×
2
from codecs import open
×
3
from pathlib import Path
×
4

5
import tomli
×
6

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

10

11
extra_requirements = {
×
12
    "readthedocs": [
13
        "furo",
14
        "readthedocs-sphinx-search",
15
        "Sphinx",
16
        "sphinx-hoverxref",
17
    ]
18
}
19

20
setup(
×
21
    name=pyproject["tool"]["poetry"]["name"],
22
    version=pyproject["tool"]["poetry"]["version"],
23
    packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
24
    extras_require=extra_requirements,
25
    install_requires=["aiohttp>=3.9.1", "tomli>=2.0.1", "setuptools>=69.0.3"],
26
    author="Snayt1k3",
27
    author_email="snayt1k3@gmail.com",
28
    description=pyproject["tool"]["poetry"]["description"],
29
    url="https://github.com/Snayt1k3/shiki.py",
30
    classifiers=[
31
        "License :: OSI Approved :: MIT License",
32
        "Programming Language :: Python :: 3",
33
        "Programming Language :: Python :: 3.10",
34
        "Programming Language :: Python :: 3.11",
35
        "Programming Language :: Python :: 3.12",
36
    ],
37
)
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