Skip to content

Commit

Permalink
update setup
Browse files Browse the repository at this point in the history
  • Loading branch information
schmouck committed Apr 30, 2021
1 parent 2dff73a commit 2cd53c1
Show file tree
Hide file tree
Showing 6 changed files with 686 additions and 6 deletions.
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion group_testing/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
_program = "GroupTesting"
__version__ = "0.1.0"
__version__ = "0.4.0"
4 changes: 2 additions & 2 deletions group_testing/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ decode:
'lambda_e': 4
'is_it_noiseless': True
'lp_relaxation': False
'solver_name': 'CPLEX_PY'
'solver_name': 'PULP_CBC_CMD'
#['GLPK_CMD', 'CPLEX_PY', 'GUROBI_CMD', 'PULP_CBC_CMD', 'COIN_CMD', 'PULP_CHOCO_CMD']
'solver_options':
'timeLimit': 1800
Expand All @@ -60,4 +60,4 @@ decode:
#'mip':True
'evaluation':
#'eval_metric': 'recall'
'eval_metric': 'balanced_accuracy'
'eval_metric': 'balanced_accuracy'
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
cplex
numpy
pandas
pulp
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
requirements = f.read().splitlines()

setup(
name=_program,
name="GroupTesting",
version=__version__,
author="Hooman Zabeti, Nick Dexter",
author_email="[email protected], [email protected]"
description="Group testing for SARS-CoV-2 in large populations.",
url="https://github.com/WGS-TB/GroupTesting",
license="TBD",
license="GPL-3",
packages=["group_testing"],
entry_points="""
[console_scripts]
Expand Down

0 comments on commit 2cd53c1

Please sign in to comment.