-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (43 loc) · 1.09 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
50
import os
from setuptools import setup, find_packages, Command
__version__ = None
exec(open('loopbit/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='loopbit',
version=__version__,
description='Loop caller from 3C based experiments.',
url='https://github.com/3DGenomes/loopbit',
setup_requires=[
'setuptools>=18.0',
],
packages=find_packages() + ['models'],
include_package_data=True,
package_dir={'models': 'models'},
package_data={'models': ['*.json', '*.h5']},
install_requires=[
'cython',
'tensorflow',
'seaborn',
'keras',
'numpy>1.14.5',
'matplotlib',
'scipy',
'pandas',
],
zip_safe= False,
scripts=['bin/loopbit'],
cmdclass={
'clean': CleanCommand
},
classifiers=(
"Programming Language :: Python :: 3.",
),
)