Skip to content

Commit

Permalink
Configuration changes for packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
nadavs committed Jul 8, 2012
1 parent 6a06af4 commit c126fa0
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 17 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.pyc
.project
.pydevproject
dist
2 changes: 2 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
v0.2.0, 2012-07-08 -- First release for distributing as a package.

2 changes: 2 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Released under the MIT license.

2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include README.md *.txt
recursive-include docs *.txt
8 changes: 4 additions & 4 deletions pycloudinary.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Metadata-Version: 1.0
Name: pycloudinary
Version: 0.2dev
Version: 0.2.0
Summary: Python interface to Cloudinary
Home-page: http://cloudinary.com
Author: Tal Lev-Ami
Author-email: tal.levami@cloudinary.com
Author: Cloudinary
Author-email: info@cloudinary.com
License: MIT
Description: UNKNOWN
Keywords: cloudinary image upload cdn
Keywords: cloudinary image upload transformation cdn
Platform: UNKNOWN
5 changes: 5 additions & 0 deletions pycloudinary.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
CHANGES.txt
LICENSE.txt
MANIFEST.in
README.md
setup.cfg
setup.py
pycloudinary/__init__.py
Expand All @@ -12,5 +16,6 @@ pycloudinary.egg-info/entry_points.txt
pycloudinary.egg-info/not-zip-safe
pycloudinary.egg-info/requires.txt
pycloudinary.egg-info/top_level.txt
pycloudinary/templates/cloudinary_direct_upload.html
pycloudinary/templatetags/__init__.py
pycloudinary/templatetags/cloudinary.py
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[egg_info]
tag_build = dev
tag_svn_revision = true
#tag_build = dev
#tag_svn_revision = true
18 changes: 7 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,21 @@
from setuptools import setup, find_packages
import sys, os

version = '0.2'
version = '0.2.0'

setup(name='pycloudinary',
version=version,
description="Python interface to Cloudinary",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='cloudinary image upload cdn',
author='Tal Lev-Ami',
author_email='[email protected]',
long_description='',
classifiers=[],
keywords='cloudinary image upload transformation cdn',
author='Cloudinary',
author_email='[email protected]',
url='http://cloudinary.com',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
test_suite="tests",
install_requires=["poster" ],
entry_points="""
# -*- Entry points: -*-
""",
install_requires=["poster"]
)

0 comments on commit c126fa0

Please sign in to comment.