-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
31 lines (30 loc) · 1.12 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup
from setuptools import find_packages
setup(
name='qubo-nn',
version='0.2.5',
install_requires=[
'numpy', 'networkx', 'torchvision', 'torch', 'dwave-qbsolv',
'qubovert', 'matplotlib', 'scipy', 'tensorflow', 'sklearn',
'tensorboard', 'ml-pyxis',
],
long_description_content_type='text/markdown',
description='QUBO translations for 14 problems. Also: Reverse-engeering '
'and AutoEncoders for QUBOs.',
url='https://github.com/instance01/qubo-nn',
author='Instance01',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Intended Audience :: Science/Research'
],
long_description=open('README.md').read(),
zip_safe=False)