-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
48 lines (45 loc) · 1.9 KB
/
setup.py
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
40
41
42
43
44
45
46
47
48
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='[email protected]',
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==2.3.7',
'preconditions==0.1',
'numpy==1.19.5',
'pandas==1.1.5',
'pysam==0.19.0',
'plastid==0.6.1',
'dill==0.3.8',
'colorlover==0.3.0',
'bokeh==2.4.3',
'logging==0.4.9.6',
'biopython==1.77',
'matplotlib==3.3.4',
'scipy==1.5.4'],
zip_safe=False)