-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (60 loc) · 1.49 KB
/
setup.py
File metadata and controls
62 lines (60 loc) · 1.49 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#create a setup.py file to install the package
from setuptools import setup, find_packages
setup(
name="synEvo",
version="0.1",
description="RNA benchmarking tools and utilities.",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=[
'einops',
'forgi',
"ViennaRNA",
"biopython",
"dask",
"dask[dataframe]",
"nltk",
"regex",
"Distance",
"distlib",
"gdown",
"google-auth",
"google-auth-oauthlib",
"google-pasta",
"GraKeL",
"logomaker",
"matplotlib",
"matplotlib_venn",
"ninja",
"numpy",
"pandas",
"plotly",
"pyaml",
"pynisher",
"pytest",
"PyYAML",
"rotary_embedding_torch",
"scikit-bio",
"seaborn",
"tensorboard==2.12.3",
"tensorboard-data-server==0.7.0",
"tensorflow==2.12.0",
"tensorflow-estimator==2.12.0",
"tensorflow-io-gcs-filesystem==0.32.0",
"torch",
"torchvision",
"umap-learn",
"upsetplot",
],
classifiers=[
"Programming Language :: Python :: 3.9",
# Add other relevant classifiers.
],
# Optional
author='Frederic Runge',
author_email='runget@cs.uni-freiburg.de',
license='MIT',
keywords='Synthetic Evolution',
url='https://github.com/Rungetf/RnaBench.git'
)