Skip to content

Commit

Permalink
Fix for dependencies using pip
Browse files Browse the repository at this point in the history
  • Loading branch information
rgeorgi committed Feb 20, 2021
1 parent 5a9805b commit b64d1a7
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,20 @@
from setuptools import setup

setup(name='igtdetect',
version='1.1.0',
version='1.1.1',
description='Line-level classifier for IGT instances, part of RiPLEs pipeline.',
author='Ryan Georgi',
author_email='[email protected]',
url='https://github.com/xigt/igtdetect',
scripts=['detect-igt'],
packages=['igtdetect'],
install_requires = [
'scikit-learn == 0.18.1',
'wheel',
'setuptools>=53',
'scikit-learn>=0.18.1',
'numpy',
'freki',
'riples-classifier',
],
dependency_links = [
'https://github.com/xigt/freki/tarball/master#egg=freki-0.1.0',
'https://github.com/xigt/riples-classifier/tarball/master#egg=riples-classifier-0.1.0',
],
'freki@https://github.com/xigt/freki/archive/v0.3.0.tar.gz',
'riples-classifier@https://github.com/xigt/riples-classifier/archive/0.1.0.tar.gz',
]

)

0 comments on commit b64d1a7

Please sign in to comment.