forked from pydna-group/pydna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.yaml
executable file
·59 lines (55 loc) · 1.42 KB
/
meta.yaml
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
package:
name: pydna
version: {{ environ.get('GIT_DESCRIBE_TAG', 'default') }}
build:
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
include_recipe: False
script: python setup.py install --single-version-externally-managed --record=record.txt
source:
git_url: .
requirements:
build:
- python {{ python }}
- setuptools
- setuptools_scm
- pytest-runner
run:
- python {{ python }}
- appdirs
- biopython >=1.79
- networkx
- prettytable
- pyparsing
- requests
- ipython
- jupyter
- scipy
- matplotlib
- pillow
- CAI
test:
requires:
- pytest
- pytest-cov
- pytest-doctestplus
- requests-mock
- nbval
- coverage
imports:
- pydna
source_files:
- tests
- src
- src/pydna
about:
home: https://github.com/BjornFJohansson/pydna
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE.txt
summary: Representing double stranded DNA and simulating cloning, homologous recombination, Gibson assembly, Gel electrophoresis etc.
description: Representing double stranded DNA and simulating cloning, homologous recombination, Gibson assembly, Gel electrophoresis etc.
doc_url: https://pydna.readthedocs.io
dev_url: https://github.com/BjornFJohansson/pydna
extra:
maintainers:
- "Björn Johansson <[email protected]>"