-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
30 lines (29 loc) · 890 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup
setup(
name="sparkbadge",
author="Nick Shannon",
classifiers=[
"Intended Audience :: Developers",
"License :: MIT",
"Programming Language :: Python",
"Operating System :: Linux",
],
description="A library and command-line tool for generating Github-style " +
"badges",
keywords="github badge shield status longitudinal metrics",
python_requires=">=3.10",
# install_requires=["Jinja2>=3,<4", "requests>=2.22.0,<3"],
# extras_require={
# "pil-measurement": ["Pillow>=6,<10"],
# "dev": [
# "Flask>=2.0",
# "fonttools>=3.26",
# "nox",
# "Pillow>=5",
# "pytest>=3.6",
# "xmldiff>=2.4"
# ],
# },
license="MIT",
packages=["sparkbadge"],
url="https://github.com/klaeufer/sparkbadge")