-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (42 loc) · 1.06 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
49
import os
from setuptools import setup, find_packages, Command
__version__ = None
exec(open('metawaffle/version.py').read())
class CleanCommand(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info ./htmlcov')
setup(
name='metawaffle',
version=__version__,
description='Deconvolution of regions of interest according to their structurual pattern.',
url='https://github.com/3DGenomes/meta-waffle',
setup_requires=[
'setuptools>=18.0',
],
packages=find_packages(),
install_requires=[
'cython',
'numpy==1.16.3',
'scikit-learn',
'neupy',
'matplotlib',
'pysam',
'scipy',
'pandas',
'pickle-mixin',
'functools',
'multiprocess',
],
scripts=['bin/metawaffle'],
cmdclass={
'clean': CleanCommand
},
classifiers=(
"Programming Language :: Python :: 2.7",
),
)