forked from pyranges/pyranges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (41 loc) · 1.51 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
import os
from distutils.core import setup
from setuptools import find_packages
__version__ = open("pyranges/version.py").readline().split(" = ")[1].replace(
'"', '').strip()
install_requires = [
"cython", "pandas", "ncls>=0.0.63", "tabulate", "sorted_nearest>=0.0.33", "pyrle",
"natsort"] #,
# optional_requires = ["bamread", "pybigwig", "ray"]
if os.getenv("TRAVIS"):
install_requires.append("bamread pybigwig".split())
setup(
name="pyranges",
packages=find_packages(),
package_data={
'pyranges': [
'example_data/*.bed', 'example_data/*.gtf', 'example_data/*.bam',
'example_data/*.bam.bai', 'example_data/*.gz', 'example_data/*.bw'
]
},
# data_files = ["LICENSE"],
include_dirs=["."],
version=__version__,
description="GenomicRanges for Python.",
author="Endre Bakken Stovner",
author_email="[email protected]",
url="http://github.com/endrebak/pyranges",
keywords=["Bioinformatics"],
license="MIT",
install_requires=install_requires,
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta", "Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
'License :: OSI Approved :: MIT License',
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Topic :: Scientific/Engineering"
],
long_description=("Performant Pythonic GenomicRanges."))