Skip to content

Commit

Permalink
Setup update.
Browse files Browse the repository at this point in the history
  • Loading branch information
I159 committed Oct 1, 2018
1 parent 2ad0ac3 commit 0616d35
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 24 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ What's new in v0.9.0

Any binary files passed along with AWS services responses will be recorded as json lists
of bytes and deserialized at a record replay. Any operation with an original file
could be tested as it been executed with a real service call.
could be tested as it been's executed with a real service call.


Deprecation
Expand Down
40 changes: 17 additions & 23 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,31 +1,25 @@
#!/usr/bin/env python

from setuptools import setup, find_packages

from setuptools import find_packages, setup

setup(
name='placebo',
version='0.8.1',
description='Make boto3 calls that look real but have no effect',
long_description=open('README.md').read(),
author='Mitch Garnaat',
author_email='mitch@garnaat.com',
url='https://github.com/garnaat/placebo',
packages=find_packages(exclude=['tests*']),
package_dir={'placebo': 'placebo'},
name="lpr-placebo",
version="0.9.0",
description="Make boto3 calls that look real but have no effect",
long_description=open("README.md").read(),
author="Mitch Garnaat, Ilya Pekelny",
author_email="ilya@launchpadrecruits.com",
url="https://github.com/launchpadrecruits/lpr-placebo",
packages=find_packages(exclude=["tests*"]),
package_dir={"lpr-placebo": "placebo"},
license="Apache License 2.0",
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
),
)

0 comments on commit 0616d35

Please sign in to comment.