-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
43 lines (35 loc) · 1.28 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
32
33
34
35
36
37
38
39
40
41
42
43
"""
Setup for lookatme.contrib.image_ueberzug
"""
from setuptools import setup, find_namespace_packages
import os
req_path = os.path.join(os.path.dirname(__file__), "requirements.txt")
with open(req_path, "r") as f:
required = f.read().splitlines()
readme_path = os.path.join(os.path.dirname(__file__), "README.md")
with open(readme_path, "r") as f:
readme = f.read()
setup(
name="lookatme.contrib.image_ueberzug",
version="{{VERSION}}",
description="An image renderer that uses ueberzug",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/d0c-s4vage/lookatme.contrib.image_ueberzug",
author="James Johnson",
author_email="[email protected]",
python_requires=">=3.6",
install_requires=required,
packages=find_namespace_packages(include=["lookatme.*"]),
classifiers=[
"Environment :: Console",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Graphics :: Presentation",
"Topic :: Software Development :: Documentation",
],
)