forked from pydna-group/pydna
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmeta.yaml
executable file
·51 lines (47 loc) · 1.07 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
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
- setuptools
- pypandoc
- pandoc
run:
- python
- appdirs
- biopython
- prettytable
- networkx
- pyparsing
- requests
- ipython
- jupyter
- scipy
- matplotlib
- mpldatacursor
- pint
test:
requires:
- pytest
- requests-mock
imports:
- pydna
source_files:
- tests
- pydna
about:
home: https://github.com/BjornFJohansson/pydna
summary: Representing double stranded DNA and simulating cloning, homologous recombination, Gibson assembly, Gel electrophoresis etc.
license_file: LICENSE.txt
license: BSD-3-Clause
license_family: BSD
extra:
maintainers:
- "Björn Johansson <bjorn_johansson@bio.uminho.pt>"