Skip to content

Commit 4beea10

Browse files
committed
updated install requirments and ensure packaging dependency
1 parent a8bace1 commit 4beea10

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

MANIFEST.in

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
include LICENCE_GPLv3.txt
2-
include README.txt
2+
include README.md
3+
include RELEASES.md
4+
include CONTRIBUTORS.md
5+
include environment.yml
6+
include requirements.txt
37
include cbmpy/*
4-
include cbmpy/models/*
5-
include cbmpy/nosetests/*
68
include cbmpy/fluxmodules/*

environment.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
name: cbmpy
1+
name: cbmpy3
22
channels:
33
- bgoli
4-
- sbmlteam
4+
- conda-forge
55
- defaults
66
dependencies:
77
- biopython>=1.78
@@ -18,6 +18,7 @@ dependencies:
1818
- xlwt
1919
- cbmpy
2020
- pip
21+
- packaging
2122
- pip:
2223
- swiglpk==4.65.1
23-
prefix: C:\Anaconda3\envs\cbmpy
24+
prefix: C:\Anaconda3\envs\cbmpy3

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
biopython
2+
packaging
23
jedi==0.17.2
34
ipython
45
nose
@@ -11,4 +12,4 @@ sympy
1112
xlrd
1213
XlsxWriter
1314
xlwt
14-
cbmpy>=0.8.0
15+
cbmpy>=0.8.1

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
try:
3232
from setuptools import setup
3333

34-
install_requires_src = ['numpy']
34+
install_requires_src = ['numpy', 'packaging']
3535
extras_requires_src = {
3636
'sympy': ['sympy'],
3737
'glpk': ['swiglpk',],
@@ -77,7 +77,7 @@
7777
# zip_safe = False,
7878
install_requires=install_requires_src,
7979
extras_requires=extras_requires_src,
80-
requires=['numpy', 'sympy', 'libsbml', 'nose'],
80+
requires=['numpy', 'sympy', 'python_libsbml', 'nose', 'packaging'],
8181
platforms=["Windows", "Linux", "Mac"],
8282
classifiers=[
8383
'Development Status :: 4 - Beta',

0 commit comments

Comments
 (0)