Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 0.1 2013-09-07
----------------------
- Initial release

Version 0.2 2017-04-20
----------------------
- Updated package structure and setup.py to allow for packaging tools to find stepford.py correctly
4 changes: 3 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
include README LICENSE CHANGES stepford.py tests.py
include README LICENSE CHANGES
include stepford/*
include test/*
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ test:
nosetests -s --with-coverage --cover-package=stepford

lint:
pylint stepford.py -r n \
pylint stepford/stepford.py -r n \
-d F0401,E0611 \
--output-format=colorized \
--msg-template='{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}'
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(name='stepford',
keywords='python,facebook,integration test,test users',
version='0.1',
version='0.2',
description='An implementation of the Facebook test user API',
author='Demian Brecht',
author_email='[email protected]',
Expand All @@ -27,6 +27,8 @@
'Topic :: Utilities',
],
long_description=README,
packages=find_packages(),
include_package_data=True,
install_requires=requires,
test_suite='tests.TestStepford',
)
Empty file added stepford/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.