-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbioconda_setup.py
39 lines (36 loc) · 1.39 KB
/
bioconda_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
import os
import sys
from setuptools import setup, find_packages
# from Cython.Build import cythonize
from epic.version import __version__
setup(
name="bioepic",
packages=find_packages(),
# ext_modules=cythonize(
# "epic/statistics/add_to_island_expectations_cython.pyx"),
scripts=["bin/epic", "bin/epic-effective"],
package_data={'epic':
['scripts/effective_sizes/*.txt',
'scripts/chromsizes/*chromsizes',
'scripts/genome.snakefile', 'scripts/bioconda_setup.py']},
version=__version__,
description="Chip-Seq broad peak/domain finder.",
author="Endre Bakken Stovner",
author_email="[email protected]",
url="http://github.com/endrebak/epic",
keywords=["ChIP-Seq"],
license=["MIT"],
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Other Environment", "Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Topic :: Scientific/Engineering"
],
long_description=
("Chip-Seq broad peak/domain finder based on SICER. See the url for more info."
))