Skip to content

Commit

Permalink
Prep 0.0.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
kgaughan committed May 2, 2016
1 parent 08e7053 commit d2ff658
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 18 deletions.
11 changes: 11 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@
Change history
==============

.. _version-0.0.7:

0.0.7 (2016-05-01)
==================

* Update server list from IANA.
* Fix a bug affecting the thin WHOIS code, where the registry WHOIS is kept.
* Recursion patterns for .jobs
* Prep for ENUM and .arpa support.
* First release as a wheel.

.. _version-0.0.6:

0.0.6 (2015-11-25)
Expand Down
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include LICENSE ChangeLog buildkit.py requirements.txt uwhoisd.ini AUTHORS
include LICENSE ChangeLog AUTHORS
recursive-include docs *.rst *.py
recursive-include extra *.ini
recursive-include tests *
prune tests
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-r requirements.txt
-e .

# Testing.
coverage
Expand Down
1 change: 0 additions & 1 deletion requirements.txt

This file was deleted.

24 changes: 10 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,23 @@ def read(filename):
return fh.read()


def read_requirements(requirements_path):
"""Read a requirements file, stripping out the detritus."""
requirements = []
with open(requirements_path, 'r') as fh:
for line in fh:
line = line.strip()
if line != '' and not line.startswith(('#', 'svn+', 'git+')):
requirements.append(line)
return requirements


setup(
name='uwhoisd',
version='0.0.6',
version='0.0.7',
description="Universal domain WHOIS proxy server.",
long_description=read('README') + "\n\n" + read("ChangeLog"),
url='https://github.com/kgaughan/uwhoisd/',
license='MIT',
packages=find_packages(exclude='tests'),
packages=find_packages(exclude=['tests']),
zip_safe=True,
install_requires=read_requirements('requirements.txt'),

setup_requires=[
'setuptools',
'wheel',
],
install_requires=[
'diesel>=2.1.1',
],

entry_points={
'console_scripts': (
Expand Down

0 comments on commit d2ff658

Please sign in to comment.