-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
51 lines (49 loc) · 1.71 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from pathlib import Path
versionfile = Path("./version")
version = versionfile.read_text().split("\n")[0]
[mainv,modulev,minorv] = version.split(".")
print(mainv,modulev,minorv)
VERSION = (int(mainv), int(modulev), int(minorv))
__version__ = '.'.join(map(str, VERSION[0:3]))
__description__ = '''this is a description'''
__author__ = 'zk'
__author_email__ = '[email protected]'
__homepage__ = 'https://github.com/zk4/epub2html'
__download_url__ = '%s/archive/master.zip' % __homepage__
__license__ = 'BSD'
if __name__ == '__main__':
setup(
# used in pip install and uninstall
# pip install modulename
name='epub2html',
version=__version__,
author=__author__,
author_email=__author_email__,
url=__homepage__,
description=__description__,
long_description=open('README.md', 'r', encoding='utf-8').read().strip(),
long_description_content_type='text/markdown',
download_url=__download_url__,
license=__license__,
python_requires=">3.0.0",
zip_safe=False,
packages=find_packages(exclude=['tests', 'tests.*']),
package_data={
'epub2html': ['template.html','jquery.min.js','leader-line.min.js','version']
},
install_requires=open('requirements.txt', 'r').read().strip().split(),
entry_points={
'console_scripts': [
'epub2html = epub2html:entry_point'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console'
],
keywords=(
'best practice for python project'
)
)