-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 950 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
30
31
32
33
34
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
setup(
name = 'RNAFoldAssess',
version = '0.1',
description = 'Benchmarking repository for RNA folding',
long_description = LONG_DESCRIPTION,
long_description_content_type = 'text/markdown',
license = 'MIT',
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Intended Audience :: Science/Research',
],
python_requires = '>=3.9',
install_requires = [
'scipy',
'requests',
'pandas'
],
packages=[
'RNAFoldAssess',
'RNAFoldAssess.utils',
'RNAFoldAssess.models',
'RNAFoldAssess.models.predictors',
'RNAFoldAssess.models.scorers'
]
)