-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·45 lines (40 loc) · 1.23 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
#!/usr/bin/env python
# coding: utf-8
import setuptools
import importlib
pkg = importlib.import_module('md2zhihu.version')
setuptools.setup(
name="md2zhihu",
packages=["md2zhihu",
"md2zhihu.mistune",
"md2zhihu.md2zhihu",
"md2zhihu.mistune.plugins"],
version=pkg.__version__,
license='MIT',
description='convert markdown to zhihu compatible format. https://github.com/drmingdrmer/md2zhihu',
long_description='See: https://github.com/drmingdrmer/md2zhihu',
long_description_content_type="text/markdown",
author='Zhang Yanpo',
author_email='[email protected]',
url='https://github.com/drmingdrmer/md2zhihu',
keywords=['python', 'markdown', 'zhihu'],
python_requires='>=3.0',
entry_points = {
'console_scripts': [
'md2zhihu = md2zhihu:main',
],
},
install_requires=[
'PyYAML>=5.3.1',
'k3color>=0.1.2',
'k3down2>=0.1.15',
'k3fs>=0.1.5',
'k3git>=0.1.6',
'k3handy>=0.1.5',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
] + ['Programming Language :: Python :: 3'],
)