forked from lilit-nersisyan/fivepseq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.56 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (36 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import fivepseq
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
def get_version():
return fivepseq.__version__
setup(name='fivepseq',
version=get_version(),
entry_points={'console_scripts': ['fivepseq = fivepseq.__main__:main']},
description='A package for analysis and visualization of 5\' endpoint distribution in RNA-seq datasets.',
url='http://github.com/lilit-nersisyan/fivepseq',
dependency_links=['http://github.com/lilit-nersisyan/fivepseq/tarball/master#egg=package-1.0'],
author='Lilit Nersisyan, Maryia Ropat',
author_email='lilit.nersisyan@ki.se',
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
license='BSD 3-Clause',
packages=find_packages(),
include_package_data=True,
test_suite='nose.collector',
tests_require=['nose'],
install_requires=['pathlib2', 'preconditions',
'numpy', 'pandas', 'pysam', 'plastid',
'dill', 'colorlover',
'bokeh', 'logging'],
zip_safe=False)