Changeset - dd21a8769350
[Not reviewed]
master
0 2 0
Branko Majic (branko) - 9 years ago 2016-12-03 16:51:04
branko@majic.rs
Noticket: Bumping version to development.
2 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
docs/conf.py
Show inline comments
 
@@ -45,27 +45,27 @@ source_suffix = '.rst'
 
# The master toctree document.
 
master_doc = 'index'
 

	
 
# General information about the project.
 
project = u'Django 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.2'
 
version = '0.2-dev'
 
# The full version, including alpha/beta/rc tags.
 
release = '0.2'
 
release = '0.2-dev'
 

	
 
# 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
setup.py
Show inline comments
 
import os
 
from setuptools import setup, find_packages
 

	
 
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
 
INSTALL_REQUIREMENTS = ["pydenticon>=0.3", "django>=1.8.0"]
 
TEST_REQUIREMENTS = []
 

	
 
# 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='django-pydenticon',
 
    version='0.2',
 
    version='0.2-dev',
 
    packages=find_packages(exclude=["testproject", "testproject.*"]),
 
    include_package_data=True,
 
    license='BSD',
 
    description='Django application providing generated identicons to the web.',
 
    long_description=README,
 
    url='https://github.com/azaghal/django-pydenticon',
 
    author='Branko Majic',
 
    author_email='branko@majic.rs',
 
    install_requires=INSTALL_REQUIREMENTS,
 
    tests_require=TEST_REQUIREMENTS,
 
    classifiers=[
 
        'Development Status :: 4 - Beta',
0 comments (0 inline, 0 general)