diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..5ad2faa --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,2 @@ +# v0.1.0 +* Initial release diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..8511aca --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,13 @@ +# Contributing to rets + +## Pull requests are welcome! + +1. Fork the repo +2. Create a topic branch +3. Make logically grouped commits with clear commit messages +4. Push your commits to your fork +5. Open a pull request against `opendoor-labs/rets` + +## Issues + +If you believe there to is a bug, please provide the maintainers with enough detail to reproduce or a link to an app exhibiting unexpected behavior. For help, please start with Stack Overflow. diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..277b295 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,7 @@ +Copyright (c) 2016 Opendoor Labs, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/setup.py b/setup.py index e69de29..c842744 100644 --- a/setup.py +++ b/setup.py @@ -0,0 +1,35 @@ +from pip.download import PipSession +from pip.req import parse_requirements +from setuptools import setup, find_packages + +long_desc = 'Python 3.5 client for the Real Estate Transaction Standard (RETS) Version 1.7.2' + +install_requires = [str(req.req) for req in parse_requirements('requirements.txt', + session=PipSession())] + +setup( + name='rets', + version='0.1.0', + description='rets', + long_description=long_desc, + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'Intended Audience :: Financial and Insurance Industry', + 'Intended Audience :: Information Technology', + 'Intended Audience :: Other Audience', + 'Natural Language :: English', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3 :: Only', + 'Topic :: Internet :: WWW/HTTP', + 'Topic :: Internet :: WWW/HTTP :: Indexing/Search', + ], + author='Opendoor', + author_email='developers@opendoor.com', + url='https://github.com/opendoor-labs/rets', + install_requires=install_requires, + packages=find_packages(), +)