New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

scriptorium

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

scriptorium - pypi Package Compare versions

Comparing version
2.5.2
to
2.5.3
+2
scriptorium/_version.py
"""Storage of version information for scriptorium."""
__version__ = "2.5.3"
+10
-3
Metadata-Version: 1.1
Name: scriptorium
Version: 2.5.2
Version: 2.5.3
Summary: Multimarkdown and LaTeX framework for academic papers.

@@ -61,2 +61,7 @@ Home-page: https://github.com/jasedit/scriptorium

2. `LaTeX <http://www.latex-project.org/>`__
1. Some distributions don't include
`biber <http://biblatex-biber.sourceforge.net>`__, which should
be installed as well
3. `Python <http://python.org/>`__

@@ -146,3 +151,4 @@

To create a new paper using the report template previously installed:
To create a new paper in the directory ``example_report`` using the
report template previously installed:

@@ -157,3 +163,4 @@ ::

echo "# Introduction
echo "
# Introduction

@@ -160,0 +167,0 @@ This is an introductory section." >> example_report/paper.mmd

Metadata-Version: 1.1
Name: scriptorium
Version: 2.5.2
Version: 2.5.3
Summary: Multimarkdown and LaTeX framework for academic papers.

@@ -61,2 +61,7 @@ Home-page: https://github.com/jasedit/scriptorium

2. `LaTeX <http://www.latex-project.org/>`__
1. Some distributions don't include
`biber <http://biblatex-biber.sourceforge.net>`__, which should
be installed as well
3. `Python <http://python.org/>`__

@@ -146,3 +151,4 @@

To create a new paper using the report template previously installed:
To create a new paper in the directory ``example_report`` using the
report template previously installed:

@@ -157,3 +163,4 @@ ::

echo "# Introduction
echo "
# Introduction

@@ -160,0 +167,0 @@ This is an introductory section." >> example_report/paper.mmd

setup.py
scriptorium/__init__.py
scriptorium/__main__.py
scriptorium/_version.py
scriptorium/config.py

@@ -5,0 +6,0 @@ scriptorium/install.py

#!/usr/bin/env python
"""Initialization of scriptorium package."""
from ._version import __version__
from .config import _DEFAULT_CFG

@@ -5,0 +7,0 @@ CONFIG = _DEFAULT_CFG.copy()

@@ -93,2 +93,4 @@ #!/usr/bin/env python

parser.add_argument('-v', '--version', action="store_true")
subparsers = parser.add_subparsers()

@@ -155,2 +157,6 @@

if args.version:
print(scriptorium.__version__)
return 0
if 'func' in args:

@@ -157,0 +163,0 @@ args.func(args)

"""Setuptools file for a MultiMarkdown Python wrapper."""
from codecs import open
from os import path
import os
import re
from distutils.core import setup

@@ -8,11 +8,15 @@ from setuptools import find_packages

here = path.abspath(path.dirname(__file__))
with open(os.path.join('scriptorium', '_version.py'), 'r') as vfp:
vtext = vfp.read()
v_re = r"__version__ = \"(?P<ver>.*)\""
mo = re.search(v_re, vtext)
VER = mo.group("ver")
long_description = pypandoc.convert_file('README.md', 'rst')
LONG_DESC = pypandoc.convert_file('README.md', 'rst')
setup(
name='scriptorium',
version='2.5.2',
version=VER,
description='Multimarkdown and LaTeX framework for academic papers.',
long_description=long_description,
long_description=LONG_DESC,
license='MIT',

@@ -33,3 +37,3 @@ author='Jason Ziglar',

packages=find_packages(),
entry_points = {
entry_points={
'console_scripts': ['scriptorium = scriptorium:main'],

@@ -36,0 +40,0 @@ },