Skip to content

Commit 2177283

Browse files
committed
Update setup.py with long_description and Trove classifiers
1 parent f5f84d4 commit 2177283

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

setup.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
from setuptools import setup
22

33
package = 'dnds'
4-
version = '2.0'
4+
version = '2.1'
55

66
setup(
77
name=package,
88
version=version,
99
description="Calculate dN/dS ratio precisely (Ka/Ks) using a codon-by-codon counting method.",
10+
long_description=open("README.rst").read(),
1011
author="Adel Qalieh",
1112
author_email="[email protected]",
1213
url="https://github.com/adelq/dnds",
@@ -15,12 +16,14 @@
1516
classifiers=[
1617
'Development Status :: 5 - Production/Stable',
1718
'Intended Audience :: Science/Research',
18-
'Topic :: Scientific/Engineering :: Bio-Informatics',
1919
'License :: OSI Approved :: MIT License',
20+
'Natural Language :: English',
21+
'Operating System :: OS Independent',
2022
'Programming Language :: Python :: 2',
2123
'Programming Language :: Python :: 2.7',
2224
'Programming Language :: Python :: 3',
2325
'Programming Language :: Python :: 3.4',
2426
'Programming Language :: Python :: 3.5',
2527
'Programming Language :: Python :: 3.6',
28+
'Topic :: Scientific/Engineering :: Bio-Informatics',
2629
])

0 commit comments

Comments
 (0)