Skip to content

Commit

Permalink
Release v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Liam Cooke committed May 21, 2017
1 parent c629a7d commit dd5c37b
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 28 deletions.
2 changes: 0 additions & 2 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
.. Note: This file is included by Sphinx when generating HTML documentation.
Authors
=======

Expand Down
7 changes: 2 additions & 5 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@ All notable changes to this project will be documented in this file. This
project adheres to `Semantic Versioning <http://semver.org>`__ as of v1.1.0.


.. Unreleased_
.. --------------------
.. v1.4.0_ / 2017-05-20
.. --------------------
v1.4.0_ / 2017-05-21
--------------------

**Added**

Expand Down
9 changes: 4 additions & 5 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
include see/*.py
include tests/*.py
recursive-include see *.py
recursive-include tests *.py

include LICENSE
include *.md
include *.rst
include *.md *.rst LICENSE
include .travis.yml .coveragerc
15 changes: 10 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,18 @@ lint:
.PHONY: clean
clean:
rm -rf build
rm -rf ./*.pyc see/*.pyc __pycache__ see/__pycache__ .eggs
rm -rf ./*.pyc see/*.pyc __pycache__ see/__pycache__
rm -rf .eggs *.egg-info
(cd docs && make clean)

.PHONY: dist
dist:
python3 setup.py sdist --formats=bztar,gztar,zip

.PHONY: docs
docs:
(cd docs && make html)

.PHONY: dist
dist:
python3 setup.py sdist bdist_wheel

.PHONY: publish
publish:
python3 setup.py sdist bdist_wheel upload # -r testpypi
14 changes: 8 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Requirements for local development & testing.
# To install, run: pip install -r requirements.txt
# To install, run: pip3 install -r requirements.txt
# See also: .travis.yml

coverage>=4.0.0
pep8>=1.5.0
pyflakes>=1.0.0
sphinx>=1.6.0
unittest2>=1.1.0
coverage==4.4.1
pep8==1.7.0
pyflakes==1.5.0
pylint==1.7.1
Sphinx==1.6.1
unittest2==1.1.0
virtualenv==15.1.0
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
#!/usr/bin/env python
import sys
from setuptools import setup

tests_require = [
VERSION = '1.4.0'

INSTALL_REQUIRES = []
TESTS_REQUIRE = [
'mock>=2.0.0' if sys.version_info < (3, 3) else None,
'unittest2>=1.1.0' if sys.version_info < (2, 7) else None,
]

setup(name='see',
version='1.4.0',
version=VERSION,
description='dir for humans',
author='Liam Cooke',
author_email='see@araile.com',
license='BSD License',
url='https://araile.github.io/see/',
packages=['see'],
install_requires=[],
install_requires=list(filter(bool, INSTALL_REQUIRES)),
test_suite='tests',
tests_require=[lib for lib in tests_require if lib],
tests_require=list(filter(bool, TESTS_REQUIRE)),
zip_safe=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit dd5c37b

Please sign in to comment.