Skip to content

Commit 8711d23

Browse files
committed
update documentation, add new test environments for harness
1 parent be63928 commit 8711d23

5 files changed

Lines changed: 17 additions & 9 deletions

File tree

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
python-maec
22
===========
33

4-
A Python library for parsing, manipulating, and generating `Malware Attribute Enumeration and Characterization (MAEC™) <https://maecproject.github.io/>`_ content.
4+
A Python library for parsing, manipulating, and generating `Malware Attribute Enumeration and Characterization (MAEC™) <https://maecproject.github.io/>`_ v4.1 content.
55

66
:Source: https://github.com/MAECProject/python-maec
7-
:Documentation: http://maec.readthedocs.org
7+
:Documentation: https://maec.readthedocs.io/
88
:Information: https://maecproject.github.io/
99
:Download: https://pypi.python.org/pypi/maec/
1010

docs/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Once you have installed python-maec, you can begin writing Python applications t
2323

2424
.. note::
2525

26-
The *python-maec* library provides **bindings** and **APIs**, both of which can be used to parse and write MAEC XML files. For in-depth description of the *APIs, bindings, and the differences between the two*, please refer to :doc:`api_vs_bindings/index`
26+
The *python-maec* library provides **bindings** and **APIs**, both of which can be used to parse and write MAEC XML files. For in-depth description of the *APIs, bindings, and the differences between the two*, please refer to :doc:`api_vs_bindings/index`
2727

2828
Creating a MAEC Package
2929
***********************

docs/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ version of MAEC.
1515
============ ===================
1616
MAEC Version python-maec Version
1717
============ ===================
18-
4.1 4.1.0.12 (`PyPI`__) (`GitHub`__)
18+
4.1 4.1.0.16 (`PyPI`__) (`GitHub`__)
1919
4.0 4.0.1.0 (`PyPI`__) (`GitHub`__)
2020
3.0 3.0.0b1 (`PyPI`__) (`GitHub`__)
2121
============ ===================
2222

23-
__ https://pypi.python.org/pypi/maec/4.1.0.12
24-
__ https://github.com/MAECProject/python-maec/tree/v4.1.0.12
23+
__ https://pypi.python.org/pypi/maec/4.1.0.16
24+
__ https://github.com/MAECProject/python-maec/tree/v4.1.0.16
2525
__ https://pypi.python.org/pypi/maec/4.0.1.0
2626
__ https://github.com/MAECProject/python-maec/tree/v4.0.1.0
2727
__ https://pypi.python.org/pypi/maec/3.0.0b1

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,7 @@ tag = True
77

88
[bumpversion:file:maec/version.py]
99

10+
[bumpversion:file:docs/index.rst]
11+
1012
[bdist_wheel]
1113
universal = True

tox.ini

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py34,py35,py36,py37
2+
envlist = py27, py34, py35, py36, py37, docs, packaging
33

44
[testenv]
55
commands =
@@ -12,10 +12,16 @@ commands =
1212
sphinx-build -W -b doctest -d {envtmpdir}/doctrees docs {envtmpdir}/doctest
1313
sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html
1414

15+
[testenv:packaging]
16+
deps =
17+
readme_renderer
18+
commands =
19+
python setup.py check -r -s
20+
1521
[travis]
1622
python =
17-
2.7: py27
23+
2.7: py27, docs, packaging
1824
3.4: py34
1925
3.5: py35
20-
3.6: py36
26+
3.6: py36, docs, packaging
2127
3.7: py37

0 commit comments

Comments
 (0)