-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 1005 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 1005 Bytes
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
from setuptools import setup, find_packages
from remarkable_cli import __version__
setup(
name="remarkable-cli",
version=__version__,
author="Alexander Wong",
author_email="alex@udia.ca",
description="An unofficial CLI for interacting with the Remarkable tablet.",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/awwong1/remarkable-cli",
license="Apache-2.0",
packages=find_packages(),
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Environment :: Console",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
],
entry_points={"console_scripts": ["remarkable-cli=remarkable_cli:main"]},
install_requires=["paramiko", "requests", "svglib", "reportlab"],
)