We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8b1747 commit 663aad6Copy full SHA for 663aad6
1 file changed
setup.py
@@ -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