comparison setup.py @ 14:628f82e72d72

Version as released on PyPI 0.1.0
author Vimalkumar Velayudhan <vimal@biotechcoder.com>
date Wed, 26 Aug 2015 16:37:10 +0100
parents 8e1efafa6277
children
comparison
equal deleted inserted replaced
13:8a87a2c44d09 14:628f82e72d72
12 readme = readme_file.read() 12 readme = readme_file.read()
13 13
14 with open('HISTORY.rst') as history_file: 14 with open('HISTORY.rst') as history_file:
15 history = history_file.read().replace('.. :changelog:', '') 15 history = history_file.read().replace('.. :changelog:', '')
16 16
17 requirements = [ 17 requirements = ['matplotlib==1.3.1', 'pysam==0.8.3']
18 # TODO: put package requirements here
19 ]
20 18
21 test_requirements = [ 19 test_requirements = [
22 # TODO: put package test requirements here 20 # TODO: put package test requirements here
23 ] 21 ]
24 22
33 packages=[ 31 packages=[
34 'riboplot', 32 'riboplot',
35 ], 33 ],
36 package_dir={'riboplot': 34 package_dir={'riboplot':
37 'riboplot'}, 35 'riboplot'},
38 include_package_data=True,
39 install_requires=requirements, 36 install_requires=requirements,
40 license="BSD", 37 license="GPL",
41 zip_safe=False, 38 zip_safe=False,
42 keywords='riboplot', 39 keywords='riboplot',
43 classifiers=[ 40 classifiers=[
44 'Development Status :: 2 - Pre-Alpha', 41 'Development Status :: 2 - Pre-Alpha',
45 'Intended Audience :: Developers', 42 'Intended Audience :: Developers',
46 'License :: OSI Approved :: BSD License', 43 'License :: OSI Approved :: GNU General Public License (GPL)',
47 'Natural Language :: English', 44 'Natural Language :: English',
48 "Programming Language :: Python :: 2", 45 "Programming Language :: Python :: 2",
49 'Programming Language :: Python :: 2.6', 46 'Programming Language :: Python :: 2.6',
50 'Programming Language :: Python :: 2.7', 47 'Programming Language :: Python :: 2.7',
51 'Programming Language :: Python :: 3',
52 'Programming Language :: Python :: 3.3',
53 'Programming Language :: Python :: 3.4',
54 ], 48 ],
55 test_suite='tests', 49 test_suite='tests',
56 tests_require=test_requirements 50 tests_require=test_requirements,
51 entry_points={
52 'console_scripts': [
53 'riboplot = riboplot.riboplot:run',
54 'ribocount = riboplot.ribocount:run']
55 },
56 package_data={'riboplot': ['data/*.html', 'data/css/*.gif', 'data/css/*.css',
57 'data/js/*.js', 'data/js/*.map', 'scripts/*.sh']},
58 exclude_package_data={'tests': ['data/*.bam', 'data/*.bai', 'data/*.fna', 'data/*.fai']}
57 ) 59 )