Changeset - ead70abc037d
[Not reviewed]
0.2
0 3 0
Branko Majic (branko) - 11 years ago 2014-12-14 23:58:26
branko@majic.rs
Noticket: Preparing for 0.2 release.
3 files changed with 15 insertions and 3 deletions:
0 comments (0 inline, 0 general)
docs/conf.py
Show inline comments
 
@@ -28,51 +28,51 @@ sys.path.insert(0, os.path.abspath('..'))
 
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
 
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest']
 

	
 
# Add any paths that contain templates here, relative to this directory.
 
templates_path = ['_templates']
 

	
 
# The suffix of source filenames.
 
source_suffix = '.rst'
 

	
 
# The encoding of source files.
 
#source_encoding = 'utf-8-sig'
 

	
 
# The master toctree document.
 
master_doc = 'index'
 

	
 
# General information about the project.
 
project = u'Pydenticon'
 
copyright = u'2013, Branko Majic'
 

	
 
# The version info for the project you're documenting, acts as replacement for
 
# |version| and |release|, also used in various other places throughout the
 
# built documents.
 
#
 
# The short X.Y version.
 
version = '0.1.1'
 
version = '0.2'
 
# The full version, including alpha/beta/rc tags.
 
release = '0.1.1'
 
release = '0.2'
 

	
 
# The language for content autogenerated by Sphinx. Refer to documentation
 
# for a list of supported languages.
 
#language = None
 

	
 
# There are two options for replacing |today|: either, you set today to some
 
# non-false value, then it is used:
 
#today = ''
 
# Else, today_fmt is used as the format for a strftime call.
 
#today_fmt = '%B %d, %Y'
 

	
 
# List of patterns, relative to source directory, that match files and
 
# directories to ignore when looking for source files.
 
exclude_patterns = ['_build']
 

	
 
# The reST default role (used for this markup: `text`) to use for all documents.
 
#default_role = None
 

	
 
# If true, '()' will be appended to :func: etc. cross-reference text.
 
#add_function_parentheses = True
 

	
 
# If true, the current module name will be prepended to all description
 
# unit titles (such as .. function::).
 
#add_module_names = True
docs/releasenotes.rst
Show inline comments
 
Release Notes
 
=============
 

	
 
0.2
 
---
 

	
 
A small release that adds support for Python 3 in addition to Python 2.7.
 

	
 
New features:
 

	
 
* `PYD-5: Add support for Python 3.x
 
  <https://projects.majic.rs/pydenticon/issues/PYD-5>`_
 

	
 
  Support for Python 3.x, in addition to Python 2.7.
 

	
 
0.1.1
 
-----
 

	
 
This is a very small release feature-wise, with a single bug-fix.
 

	
 
New features:
 

	
 
* `PYD-3: Initial tests <https://projects.majic.rs/pydenticon/issues/PYD-3>`_
 

	
 
  Unit tests covering most of the library functionality.
 

	
 
Bug fixes:
 

	
 
* `PYD-4: Identicon generation using pre-hashed data raises ValueError
 
  <https://projects.majic.rs/pydenticon/issues/PYD-4>`_
 

	
 
  Fixed some flawed logic which prevented identicons to be generated from
 
  existing hashes.
 

	
 
0.1
 
---
 

	
 
Initial release of Pydenticon. Implemented features:
 

	
setup.py
Show inline comments
 
import os
 
from setuptools import setup
 

	
 
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
 
INSTALL_REQUIREMENTS = ["Pillow"]
 
TEST_REQUIREMENTS = ["mock"]
 

	
 
# allow setup.py to be run from any path
 
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
 

	
 
setup(
 
    name='pydenticon',
 
    version='0.2-dev',
 
    version='0.2',
 
    packages=['pydenticon'],
 
    include_package_data=True,
 
    license='BSD',  # example license
 
    description='Library for generating identicons. Port of Sigil (https://github.com/cupcake/sigil) with enhancements.',
 
    long_description=README,
 
    url='https://github.com/azaghal/pydenticon',
 
    author='Branko Majic',
 
    author_email='branko@majic.rs',
 
    install_requires=INSTALL_REQUIREMENTS,
 
    tests_require=TEST_REQUIREMENTS,
 
    test_suite="tests",
 
    classifiers=[
 
        'Environment :: Other Environment',
 
        'Environment :: Web Environment',
 
        'Intended Audience :: Developers',
 
        'License :: OSI Approved :: BSD License',
 
        'Operating System :: OS Independent',
 
        'Programming Language :: Python',
 
        'Programming Language :: Python :: 2.7',
 
        'Programming Language :: Python :: 3',
 
        'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
 
        'Topic :: Multimedia :: Graphics',
 
        'Topic :: Software Development :: Libraries',
 
    ],
0 comments (0 inline, 0 general)