-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (37 loc) · 1.16 KB
/
setup.py
File metadata and controls
48 lines (37 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import setuptools
import pathlib
BASE_DIR = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (BASE_DIR / 'README.md').read_text(encoding='utf-8')
from setuptools import setup
setup(
name="render_pdf",
version="0.2.2",
url="https://github.com/endalk200/render_pdf",
author="Endalkachew Biruk",
author_email="eb808826@gmail.com",
classifiers=[
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Topic :: Education",
"Topic :: Utilities"
],
description="This is render_pdf, with which you can render source code as PDFs.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"backports.shutil_get_terminal_size",
"backports.shutil_which",
"braceexpand",
"beautifulsoup4",
"natsort",
"Pygments>=2.7.1",
"PyPDF2",
"requests",
"six>=1.10.0",
"termcolor",
"WeasyPrint>=51"],
python_requires='>=3.3',
scripts=["./scripts/render"],
keywords=["render", "render_pdf"]
)