-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (26 loc) · 1.12 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
25
26
27
28
import os
from os.path import join
from distutils.core import setup
def read(fname):
return open(join(os.path.dirname(__file__), fname)).read()
setup(
name = "RNAsketch",
version = "1.5",
author = "Stefan Hammer",
author_email = "[email protected]",
description = ("A wrapper framework to design RNA molecules."),
license = "GPLv3",
keywords = "RNA design synthetic biology",
url = "http://github.com/ribonets/RNAsketch",
packages=['RNAsketch'],
test_suite="tests",
install_requires=[
],
scripts=[ join('bin', 'design-cofold.py'), join('bin', 'design-generategraphml.py'), join('bin', 'design-multistate.py'), join('bin', 'design-printgraphml.py'), join('bin', 'design-thermoswitch.py'), join('bin', 'design-ligandswitch.py'), join('bin', 'design-redprint-multistate.py'), join('bin', 'design-energyshift.py')],
long_description=read('README.rst'),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Chemistry",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)