Skip to content

Commit bc8bc32

Browse files
repaired setup.py depencencies
1 parent 548ecf1 commit bc8bc32

File tree

3 files changed

+17
-15
lines changed

3 files changed

+17
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ reaction [condensed = 3e+06 /M/s ] S2 + R -> e51
126126
```
127127

128128
## Version
129-
0.6
129+
0.6.1
130130

131131
## Authors
132132
Casey Grun, Stefan Badelt, Karthik Sarma, Brian Wolfe, Seung Woo Shin and Erik Winfree.

peppercornenumerator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# __init__.py
33
# EnumeratorProject
44
#
5-
__version__ = "v0.6"
5+
__version__ = "v0.6.1"
66

77
from peppercornenumerator.enumerator import Enumerator, PolymerizationError
88
from peppercornenumerator.condense import ReactionGraph, CondensationError, PepperCondensation

setup.py

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,33 @@
11
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
32

43
from setuptools import setup, find_packages
54

6-
with open('README.md') as f:
7-
readme = f.read()
8-
9-
with open('LICENSE') as f:
10-
license = f.read()
5+
LONG_DESCRIPTION="""
6+
This package enumerates domain-level strand displacement (DSD) reaction
7+
networks assuming low species concentrations, such that unimolecular reaction
8+
pathways always equilibrate before bimolecular reactions initiate. The
9+
enumerator can handle arbitrary non-pseudoknotted structures and supports a
10+
diverse set of unimolecular and bimolecular domain-level reactions: bind/unbind
11+
reactions, 3-way branch-migration and 4-way branch-migration reactions and
12+
remote toehold migration. For more background on reaction semantics we refer to
13+
the publication [Grun et al. (2014)].
14+
"""
1115

1216
setup(
1317
name='peppercornenumerator',
14-
version='0.6',
18+
version='0.6.1',
1519
description='Domain-level nucleic acid reaction enumerator',
16-
long_description=readme,
20+
long_description=LONG_DESCRIPTION,
1721
author='Casey Grun, Stefan Badelt, Karthik Sarma, Brian Wolfe, Seung Woo Shin and Erik Winfree',
1822
author_email='winfree@caltech.edu',
19-
license=license,
23+
license='MIT',
2024
test_suite='tests',
2125
install_requires=[
2226
'numpy',
2327
'pyparsing>=1.5.5',
2428
'crnsimulator==0.4',
25-
'dsdobjects==0.6'],
26-
dependency_links=[
27-
'https://github.com/bad-ants-fleet/crnsimulator/tarball/master#egg=crnsimulator-0.4',
28-
'http://github.com/DNA-and-Natural-Algorithms-Group/dsdobjects/tarball/master#egg=dsdobjects-0.6'],
29+
'dsdobjects==0.6.1'],
30+
dependency_links=['https://github.com/bad-ants-fleet/crnsimulator/archive/v0.4.tar.gz#egg=crnsimulator-0.4'],
2931
packages=['peppercornenumerator'],
3032
scripts=['scripts/peppercorn',
3133
'scripts/pilsimulator']

0 commit comments

Comments
 (0)