-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (29 loc) · 863 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·36 lines (29 loc) · 863 Bytes
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
import os, sys
from setuptools import setup, find_packages
from pathlib import Path
project_dir = Path(__file__).parent
long_description = (project_dir / "README.md").read_text()
setup(
name='ridden',
version='1.0',
author='Szilvia Barsi',
description="RIDDEN: Data-driven inference of receptor activity for cell-cell communication studies",
long_description_content_type='text/markdown',
long_description = long_description,
url="https://github.com/basvaat/RIDDEN_tool",
include_package_data=True,
packages=find_packages(),
package_data={
'ridden_model': ['ridden_model_matrix.csv'],
},
entry_points={
'console_scripts': [
'ridden-tool=ridden_tool.main:cli',
],
},
python_requires = '>=3.6',
install_requires=[
'pandas',
'numpy'
]
)