Skip to content
This repository has been archived by the owner on Nov 17, 2022. It is now read-only.

Commit

Permalink
Include CHANGES and test files in source distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
miyakogi committed Aug 15, 2017
1 parent 56f3048 commit 29eff24
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.md
Expand Up @@ -2,6 +2,10 @@

(next version)

### Version 0.1.10 (2017-08-15)

* Include CHANGES and test files in source distribution

### Version 0.1.9 (2017-08-12)

* Print help when input_file is not specified on command-line
Expand Down
5 changes: 5 additions & 0 deletions MANIFEST.in
@@ -1,2 +1,7 @@
include README.md
include LICENSE
include CHANGES.md

recursive-include tests *.py test.md test.rst
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
8 changes: 7 additions & 1 deletion setup.py
@@ -1,6 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import sys
from os import path

try:
Expand All @@ -17,6 +18,9 @@
readme = f.read()

install_requires = ['mistune', 'docutils']
test_requirements = ['pygments']
if sys.version_info < (3, 3):
test_requirements.append('mock')

setup(
name='m2r',
Expand All @@ -27,7 +31,6 @@
author_email='miyako.dev@gmail.com',
url='https://github.com/miyakogi/m2r',
py_modules=['m2r'],
packages=['tests'],
entry_points={'console_scripts': 'm2r = m2r:main'},
include_package_data=True,
license="MIT",
Expand All @@ -48,4 +51,7 @@
'Topic :: Text Processing',
],
install_requires=install_requires,
test_suite='tests',
tests_require=test_requirements,

)

0 comments on commit 29eff24

Please sign in to comment.