This repository was archived by the owner on Nov 8, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 1.16 KB
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 1.16 KB
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
from setuptools import setup
import sendKindle
setup(name='sendKindle',
version=sendKindle._version,
py_modules=['sendKindle'],
entry_points = {
'console_scripts': ['sendKindle = sendKindle:main'],
},
author='Kamil Páral',
description='CLI tool for sending files via email to your Kindle device',
long_description='Configure your email and then send any files provided as program arguments as email attachments to your Kindle device.',
keywords='commandline Kindle email',
license='GNU Affero GPL v3+',
url='https://github.com/kparal/sendKindle',
download_url='https://github.com/kparal/sendKindle/downloads',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Communications :: Email',
'Topic :: Utilities',
])