Skip to content

Commit

Permalink
Add setup.py for inclusion in PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
adelq committed May 15, 2016
1 parent c8b1747 commit 663aad6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from setuptools import setup

package = 'dnds'
version = '1.0'

setup(
name=package,
version=version,
description="Calculate dN/dS ratio precisely (Ka/Ks) using a codon-by-codon counting method.",
author="Adel Qalieh",
author_email="adelq@sas.upenn.edu",
url="https://github.com/adelq/dnds",
license="MIT",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
])

0 comments on commit 663aad6

Please sign in to comment.