Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
Merge pull request #65 from jairideout/0.0.1
Browse files Browse the repository at this point in the history
REL: 0.0.1
  • Loading branch information
gregcaporaso authored Jul 15, 2016
2 parents 90a63ed + f6cd13c commit ae0bb32
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Version 0.0.1 (2016-07-14)

Initial alpha release. At this stage, major interface changes are expected to happen.
10 changes: 10 additions & 0 deletions qiime_studio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# ----------------------------------------------------------------------------
# Copyright (c) 2016--, QIIME development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
# ----------------------------------------------------------------------------

__version__ = "0.0.1"

from .server import start_server

__all__ = ['start_server']
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
# ----------------------------------------------------------------------------
# Copyright (c) 2016--, QIIME development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
# ----------------------------------------------------------------------------

from setuptools import find_packages, setup

with open("README.md") as fh:
long_description = fh.read()

setup(
name='qiime-studio',
version='0.0.1dev',
version='0.0.1',
long_description=long_description,
packages=find_packages(),
install_requires=['click', 'flask', 'gevent']
Expand Down

0 comments on commit ae0bb32

Please sign in to comment.