Skip to content

Commit 663aad6

Browse files
committed
Add setup.py for inclusion in PyPI
1 parent c8b1747 commit 663aad6

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

setup.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
from setuptools import setup
2+
3+
package = 'dnds'
4+
version = '1.0'
5+
6+
setup(
7+
name=package,
8+
version=version,
9+
description="Calculate dN/dS ratio precisely (Ka/Ks) using a codon-by-codon counting method.",
10+
author="Adel Qalieh",
11+
author_email="adelq@sas.upenn.edu",
12+
url="https://github.com/adelq/dnds",
13+
license="MIT",
14+
classifiers=[
15+
'Development Status :: 5 - Production/Stable',
16+
'Intended Audience :: Science/Research',
17+
'Topic :: Scientific/Engineering :: Bio-Informatics',
18+
'License :: OSI Approved :: MIT License',
19+
'Programming Language :: Python :: 2',
20+
'Programming Language :: Python :: 2.7',
21+
'Programming Language :: Python :: 3',
22+
'Programming Language :: Python :: 3.4',
23+
'Programming Language :: Python :: 3.5',
24+
])

0 commit comments

Comments
 (0)