Skip to content

Commit

Permalink
Bump version number and setup travis to deploy releases.
Browse files Browse the repository at this point in the history
  • Loading branch information
rbeagrie committed Mar 4, 2017
1 parent 40f4891 commit 86fe821
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 12 deletions.
17 changes: 13 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- '2.7'
- '3.4'
- '3.5'
- '3.6'
install:
- pip install --upgrade pip setuptools
- pip install tox tox-travis coveralls codeclimate-test-reporter
script:
- tox
deploy:
provider: pypi
user: rob.beagrie
password:
secure: L4myeBx61HAtwAufRuTyXFmA4RAp3vAwLAC8Iv12/yhtImci8+veMsNOJrfgIgrI6zRf+Ao2CJT35SMTYMWGBwDCSrbePZYsUj43wudEpXKMCKO+uVWRlEaPTEBXvOCCjq6QlmNdPCtlbqO511DrD7oWdzACIwxaEN4Jy4yACBpIpxH9hIE8/UmkRaq2MLhAIhclLeu1eALtb6gFjm1xJzntfih338a/vCauul5R10iE77/1jhLsRv1pu4M2wfar543rjfj2gcx0qVZiNJueoj1QLsFR/x3wlsdacsPjmoWDes0z0b0BeXBS7Vn5/ZQ3PoeU80zsnrtr8kE/TtrERZhmByeqAcXnjkWU+Rw5sUcfCE9bpIgL60ndgd/oviXjYnWNqLMay/nrIU/rksuHW9Mg6EIcNRKuAAXFpc0+BxNIx6nXpuowUcpNHaekuNhN91PUGcQi6XbDkeHE3SbYDdXflLE2xa6bOHh9iG1auwX9CWGX75JyH1AGJEE9Mi+Y06Oeptqm8lotk597CuowEyZQZAmOeJccHt4Kqg1Zaswz1yaqPQziJRzmC1p9EC+wUXsAfcbuoFGWohuFCZqb0EXNLns/MpPWIhvtKhzDkv1kZ91089HpTVRxaR3q+5zXg2y+2rdRXnTOt2aJuf0zRzX1F5FcVpJDMTem6fcbj3g=
on:
tags: true
distributions: sdist bdist_wheel
repo: pombo-lab/gamtools
20 changes: 12 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,27 @@ def read(fname):

setup(
name = "gamtools",
version = "1.0.0-alpha.1",
version = "1.0.0",
author = "Rob Beagrie",
author_email = "rob@beagrie.com",
url = "http://gam.tools",
description = ("A package containing some utilities for analyzing GAM data."),
license = "BSD",
license = "Apache2.0",
package_dir = {'': 'lib'},
packages=['gamtools', 'gamtools.qc'],
ext_modules = ext_modules,
install_requires=[
'cython',
'numpy',
'scipy',
'doit==0.29.0;python_version<"3.0"',
'mock;python_version<"3.0"',
'doit==0.30.0;python_version>="3.0"',
'pandas',
'wrapit',
'pytest'],
extras_require={
':python_version<"3.0"': ['doit==0.29.0'],
':python_version>="3.0"': ['doit==0.30.0'],
':python_version<"3.0"': ['mock'],
},
# Set include_dirs in a custom build_ext class so that numpy is only
# required if we are compiling C files
cmdclass={
Expand All @@ -75,8 +78,9 @@ def read(fname):
long_description=read('README.md'),
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: Apache Software License",
],
)

0 comments on commit 86fe821

Please sign in to comment.