Skip to content
This repository has been archived by the owner on Apr 19, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6 from NerdWallet/master
Browse files Browse the repository at this point in the history
Build to pypi
  • Loading branch information
akshaynanavati authored Aug 25, 2016
2 parents 6131291 + fed10eb commit a772160
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 13 deletions.
29 changes: 19 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,26 @@
language: python
python:
- 2.7.8
- 2.7
- 2.7.8
- 2.7
env:
- SA_VERSION=1.0.0
- SA_VERSION=1.0.4
- SA_VERSION=1.0.14
- SA_VERSION=1.0.0
- SA_VERSION=1.0.4
- SA_VERSION=1.0.14
cache:
directories:
- $HOME/.cache/pip
- $HOME/.pyenv
- "$HOME/.cache/pip"
- "$HOME/.pyenv"
install:
- make clean install
- pip install SQLAlchemy==$SA_VERSION
- make clean install
- pip install SQLAlchemy==$SA_VERSION
script:
- make lint tests
- make lint tests
deploy:
provider: pypi
user: akshayn
password:
secure: WpxFwuCDT0+iwjEi4MBXQkJZjHwO7H8p9tnepWCoIYWMUV/lK6i4VTWT9M43sTgXn6ICVM30DNfjxQ1zVfHnuhmWmhfIL2Zk9w+KL56aCNXvAH4eLUIp1daemi5NxVn+Yb6hB8eRs2po1KdFBBd1sTHhFDHECIqNqmQ/EtswALqLcp2pNko9ridCOPZDSD6w4qUkq9BHbZPHwqXRYnCdl7OFOchpCa0PvWPGkBc3QYYrgOw/2RNAamzg3bMLI0Qjz3r4SE3z1YlIf31UyeTDToYRdTKklMmj69vFsFg8IPWVB2wh6vEt+WaulLgDEios9vALwePJGeHMuX/zEfymaTN7uwUpZGkcnWNXYv6JNAoFzlM9E3MTqjnwex5kqaRCPqtQ9S5uywkF9UCeXWC8pw50D31RjQLPnsyjxqwweNaG1YYcHRJGkiRa8wJhpYJ8TSm2wROs44bPYC9FmD039MsSlIUg9OtpqzzO2X/uEg1dNbehMfyz8eYg5yuGtcvfhbg8VVTUvw0Eif2IjWDclW7T43FAXOOMPaFJX4LbI3iug6AwX1owOSBw09ffX0wJ4ny4jQdr1wfU/M45AqOSlRGR2+heyTp6Q/svalK9jjSpgDfY+HUzVR3oW/6vL3fN4T6VHZLRTm7K0tkx3IMKhFyDcqe3xYQOK5G3ZkknB3Y=
on:
tags: true
distributions: sdist bdist_wheel
repo: NerdWallet/versionalchemy
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ Contributing
- Respond to any comments. The PR will be merged if the travis CI build passes and
the code changes are deemed sufficient by the admin

Style
~~~~~
- Follow PEP8 with a line length of 100 characters
- Prefer parenthesis to ``\`` for line breaks

License
-------
`MIT License <https://github.com/NerdWallet/versionalchemy/blob/master/LICENSE>`_
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
max-complexity = 10
max-line-length = 100
exclude = *env,docs

[metadata]
description_file = README.rst
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
from setuptools import setup


install_requires = [
VERSION = '0.1.0'
INSTALL_REQUIRES = [
'SQLAlchemy>=1.0.0',
'simplejson',
]

setup(
name='versionalchemy',
version='0.1.0',
version=VERSION,
packages=['versionalchemy', 'versionalchemy/api', 'versionalchemy/models'],
install_requires=install_requires,
install_requires=INSTALL_REQUIRES,
include_package_data=True,
author='Akshay Nanavati',
author_email='[email protected]',
license='MIT License',
description='Versioning library for relational data',
long_description='',
url='https://github.com/NerdWallet/versionalchemy',
download_url='https://github.com/NerdWallet/versionalchemy/tarball/{}'.format(VERSION),
)

0 comments on commit a772160

Please sign in to comment.