-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
53 lines (46 loc) · 1.51 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
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
"""A setuptools-based setup module.
See:
https://github.com/renweizhukov/txt2mobi3
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='txt2mobi3',
version='0.2.12',
description='Convert Chinese novel txt files into Kindle mobi files.',
long_description=long_description,
url='https://github.com/renweizhukov/txt2mobi3',
author='Wei Ren',
author_email='renwei2004@gmail.com',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'Topic :: Text Processing :: General',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
],
keywords='txt mobi python3',
packages=find_packages(),
include_package_data=True,
install_requires=[
'chardet',
'setuptools',
],
python_requires='>=3',
entry_points={
'console_scripts': [
'txt2mobi3_clt=txt2mobi3.txt2mobi3_clt:txt2mobi3_clt'
],
},
project_urls={
'Bug Reports': 'https://github.com/renweizhukov/txt2mobi3/issues',
'Documentation': 'https://github.com/renweizhukov/txt2mobi3',
'Source': 'https://github.com/renweizhukov/txt2mobi3',
},
)