-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
31 lines (30 loc) · 1.19 KB
/
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
31
import io
import setuptools
setuptools.setup(
name="sparklines",
version="0.5.0",
author="Dinu Gherman",
author_email="[email protected]",
description="Generate sparklines for numbers using Unicode characters only.",
license="GPL",
keywords="visualization, chart, tool",
url="https://github.com/deeplook/sparklines",
packages=setuptools.find_packages(exclude="test"),
long_description=io.open("README.rst", encoding="utf-8").read(),
install_requires=[],
entry_points={"console_scripts": ["sparklines=sparklines.__main__:main"]},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: GNU General Public License (GPL)",
],
)