-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (44 loc) · 1.45 KB
/
setup.py
File metadata and controls
50 lines (44 loc) · 1.45 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
"""tosixinch setup file."""
# from setuptools import setup, find_packages
from setuptools import setup
with open('README.rst') as f:
readme = f.read()
with open('VERSION') as f:
version = f.read().strip()
setup(
name='tosixinch',
version=version,
url='https://github.com/openandclose/tosixinch',
license='MIT',
author='Open Close',
author_email='openandclose23@gmail.com',
description='Browser to e-reader in a few minutes',
long_description=readme,
# https://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Utilities',
],
keywords='html pdf lxml extraction conversion e-reader kindle kobo',
# packages=find_packages(exclude=['tests']),
packages=['tosixinch', 'tosixinch.process',
'tosixinch.script', 'tosixinch.script.pcode'],
package_data={
'tosixinch': ['data/*', 'data/css/*', 'data/fini/*'],
},
entry_points={
'console_scripts': [
'tosixinch = tosixinch.main:main',
],
},
python_requires='>=3.10',
extras_require={
'test': ['lxml', 'lxml_html_clean', 'pytest'],
'dev': ['lxml', 'lxml_html_clean', 'pytest', 'sphinx'],
},
zip_safe=False,
)