Mercurial > repos > vimalkumarvelayudhan > riboplot
comparison setup.py @ 3:8e1efafa6277
Updated version
* Bugfix: blue lines in some plots (bar colors were not set correctly)
* Cookiecutter template
* Additional unit tests
* Add plot legend
| author | Vimalkumar Velayudhan <vimal@biotechcoder.com> |
|---|---|
| date | Wed, 12 Aug 2015 09:27:45 +0100 |
| parents | |
| children | 628f82e72d72 |
comparison
equal
deleted
inserted
replaced
| 2:b6fd86c539ea | 3:8e1efafa6277 |
|---|---|
| 1 #!/usr/bin/env python | |
| 2 # -*- coding: utf-8 -*- | |
| 3 | |
| 4 | |
| 5 try: | |
| 6 from setuptools import setup | |
| 7 except ImportError: | |
| 8 from distutils.core import setup | |
| 9 | |
| 10 | |
| 11 with open('README.rst') as readme_file: | |
| 12 readme = readme_file.read() | |
| 13 | |
| 14 with open('HISTORY.rst') as history_file: | |
| 15 history = history_file.read().replace('.. :changelog:', '') | |
| 16 | |
| 17 requirements = [ | |
| 18 # TODO: put package requirements here | |
| 19 ] | |
| 20 | |
| 21 test_requirements = [ | |
| 22 # TODO: put package test requirements here | |
| 23 ] | |
| 24 | |
| 25 setup( | |
| 26 name='riboplot', | |
| 27 version='0.1.0', | |
| 28 description="Plot read counts of RiboSeq data from BAM format alignment files", | |
| 29 long_description=readme + '\n\n' + history, | |
| 30 author="Vimalkumar Velayudhan", | |
| 31 author_email='vimalkumarvelayudhan@gmail.com', | |
| 32 url='https://github.com/vimalkumarvelayudhan/riboplot', | |
| 33 packages=[ | |
| 34 'riboplot', | |
| 35 ], | |
| 36 package_dir={'riboplot': | |
| 37 'riboplot'}, | |
| 38 include_package_data=True, | |
| 39 install_requires=requirements, | |
| 40 license="BSD", | |
| 41 zip_safe=False, | |
| 42 keywords='riboplot', | |
| 43 classifiers=[ | |
| 44 'Development Status :: 2 - Pre-Alpha', | |
| 45 'Intended Audience :: Developers', | |
| 46 'License :: OSI Approved :: BSD License', | |
| 47 'Natural Language :: English', | |
| 48 "Programming Language :: Python :: 2", | |
| 49 'Programming Language :: Python :: 2.6', | |
| 50 'Programming Language :: Python :: 2.7', | |
| 51 'Programming Language :: Python :: 3', | |
| 52 'Programming Language :: Python :: 3.3', | |
| 53 'Programming Language :: Python :: 3.4', | |
| 54 ], | |
| 55 test_suite='tests', | |
| 56 tests_require=test_requirements | |
| 57 ) |
