Skip to content

Commit

Permalink
cleaned up setup.py and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
txbm committed Feb 11, 2014
1 parent cfb478f commit fc93dce
Showing 1 changed file with 33 additions and 28 deletions.
61 changes: 33 additions & 28 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,36 @@
from setuptools import setup, find_packages

setup(
name='assetman',
version='0.0.2',
url='http://github.com/petermelias/assetman',
license='BSD',
author='Peter M. Elias',
author_email='petermelias@gmail.com',
description='Generic blob-data asset manager that provides an API, CLI interface, for managing S3 assets and the respective CloudFront delivery setup.',
long_description=__doc__,
packages=find_packages(),
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'boto',
],
extras_require={
'test': ['nose', 'wand', 'coveralls']
},
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)
name='assetman',
version='0.0.3',
url='http://github.com/petermelias/assetman',
license='BSD',
author='Peter M. Elias',
author_email='petermelias@gmail.com',
description='Generic blob-data asset manager that provides an '
'API, CLI interface, for managing S3 assets and '
'the respective CloudFront delivery setup.',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'boto',
],
extras_require={
'test': [
'coveralls',
'nose',
'wand',
]
},
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)

0 comments on commit fc93dce

Please sign in to comment.