forked from mhorlacher/rbpnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 846 Bytes
/
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
# %%
from setuptools import setup, find_packages
# %%
with open('requirements.txt', 'r') as f:
requirements = f.read().splitlines()
# %%
setup(name='rbpnet',
version='0.10.0',
description='RBPNet',
url='http://github.com/mhorlacher/rbpnet',
author='Marc Horlacher',
author_email='[email protected]',
license='MIT',
install_requires=requirements,
packages=find_packages(),
include_package_data=True,
# data_files = [
# #('notebooks', ['rbpnet/notebooks/Evaluate.ipynb']),
# ('configs', ['rbpnet/configs/config.modisco.gin'])
# ],
#package_data={'notebooks': ['notebooks/*.ipynb']},
entry_points = {
'console_scripts': [
'rbpnet=rbpnet.__main__:main',
],
},
zip_safe=False)