Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
instance01 committed Jul 1, 2021
1 parent 1395620 commit 66a484f
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions setup.py
Expand Up @@ -2,8 +2,24 @@

setup(
name='qubo-nn',
version='0.2.0',
version='0.2.1',
install_requires=[
'numpy', 'networkx', 'torchvision', 'torch', 'dwave-qbsolv'
]
)
'numpy', 'networkx', 'torchvision', 'torch', 'dwave-qbsolv',
'qubovert', 'matplotlib', 'scipy', 'tensorflow', 'sklearn',
'tensorboard',
'ml-pyxis@git+https://github.com/vicolab/ml-pyxis@master',
],
description='QUBO translations for 14 problems. Also: Reverse-engeering and AutoEncoders for QUBOs.',
url='https://github.com/instance01/qubo-nn',
author='Instance01',
author_email='whodis@instancedev.com',
license='MIT',
packages=['qubo_nn'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
long_description=open('README.md').read(),
zip_safe=False)

0 comments on commit 66a484f

Please sign in to comment.