-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
24 lines (22 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='speos',
version='0.2.4',
author='Florin Ratajczak',
author_email='[email protected]',
description='We good to go',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fratajcz/speos",
project_urls={
"Bug Tracker": "https://github.com/fratajcz/speos/issues"
},
license='MIT',
packages=find_packages(exclude=["speos.scripts","speos.tests"]),
package_data={'speos': ['LICENSE.md', "speos/adjacencies.json", "speos/mapping.json", "speos/utils/config_default.yaml"],
"extensions": ["extensions/mapping.json", "extensions/adjacencies.json", "extensions/datasets.json"]},
#package_dir={"": "coregenes"},
install_requires=["torch", "torch-geometric", "captum", "networkx", "h5py", "igraph", "matplotlib", "seaborn", "statsmodels", "scikit-learn", "pandas", "tensorboard", "pyyaml"],
)