-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (44 loc) · 1.22 KB
/
setup.py
File metadata and controls
45 lines (44 loc) · 1.22 KB
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
from setuptools import setup, find_packages
setup(
name='EndotypY',
version='0.1',
packages=find_packages(),
install_requires=[
'numpy',
'pandas',
'gprofiler-official',
'networkx',
'scikit-learn',
'matplotlib',
'seaborn',
'scipy',
'tqdm',
'mygene',
'gseapy',
'threadpoolctl',
'biopython',
'nbformat>=4.2.0',
'requests',
'kl-clustering-analysis[viz] @ git+https://github.com/EnesSakalliUniWien/kl-tree-cluster.git@Only-Topology-Test',
'plotly',
'biothings-client',
'datamapplot',
],
entry_points={
'console_scripts': [
# Add your command line scripts here
],
},
author='Your Name',
author_email='mathilde.meyenberg@univie.ac.at',
description='A short description of your package',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/yourusername/EndotypY',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.9',
)