Skip to content

Commit

Permalink
Merge branch 'release'
Browse files Browse the repository at this point in the history
  • Loading branch information
psalvy committed Sep 25, 2017
2 parents a77c14a + 4fddd09 commit 4803839
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 6 deletions.
5 changes: 4 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
include LICENSE.txt
include README.rst
include README.rst

include models/*
include data/*
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# The short X.Y version.
version = '0.6'
# The full version, including alpha/beta/rc tags.
release = '0.6.1-b3'
release = '0.6.1-b5'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
6 changes: 5 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
[metadata]
description-file = README.md
description-file = README.rst
license_file = LICENSE.txt

[bdist_wheel]
universal = 1
30 changes: 27 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""

from setuptools import setup
from setuptools import setup, find_packages
# import os
# from pip.req import parse_requirements
# from pip.download import PipSession
Expand All @@ -19,7 +19,7 @@
# reqs = [str(ir.req) for ir in install_reqs]
# return reqs

version_tag = '0.6.1-b3'
version_tag = '0.6.1-b5'

setup(name='pytfa',
version=version_tag,
Expand All @@ -32,8 +32,32 @@
'optlang',
'pytest',
'scipy'],
py_modules=['pytfa'],
packages = find_packages(),
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4',
description='pyTFA adds Thermodynamics-based Flux Analysis',
keywords=['pytfa','tfa','thermodynamics','flux analysis'],

license='Apache2',

# See https://PyPI.python.org/PyPI?%3Aaction=list_classifiers
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',

# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Environment :: Console',

# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: Apache Software License',

# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)

0 comments on commit 4803839

Please sign in to comment.