Skip to content

Commit

Permalink
Add install_requires and packages to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
m3ller committed Nov 23, 2018
1 parent 4f4d862 commit f08baa9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions penaltymodel_lp/setup.py
Expand Up @@ -2,8 +2,19 @@

FACTORY_ENTRYPOINT = 'penaltymodel_factory'

install_requires = ['dimod>=0.6.0,<0.8.0',
'penaltymodel>=0.15.0,<0.16.0',
'scipy>=0.15.0,<1.1.0',
'numpy>=0.0.0,<1.16.0'
]

packages = ['penaltymodel',
'penaltymodel.lp',
]

setup(
name="penaltymodel-lp",
install_requires=install_requires,
entry_points={
FACTORY_ENTRYPOINT: ['lp = penaltymodel.lp:get_penalty_model']
}
Expand Down

0 comments on commit f08baa9

Please sign in to comment.