Skip to content

Commit

Permalink
setup.py: Add long description and classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
jonls committed May 21, 2015
1 parent 5380527 commit 345c093
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@

from setuptools import setup, find_packages

# Read long description
with open('README.rst') as f:
long_description = f.read()

setup(
name='psamm',
version='0.10.1',
Expand All @@ -27,8 +31,12 @@
url='https://github.com/zhanglab/psamm',
license='GNU GPLv3+',

long_description=long_description,

classifiers = [
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)'
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 2.7'
],

packages=find_packages(),
Expand Down

0 comments on commit 345c093

Please sign in to comment.