forked from dwavesystems/dwave-networkx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (22 loc) · 857 Bytes
/
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
from setuptools import setup, find_packages
from dwave_networkx import __version__, __author__, __description__, __authoremail__
packages = ['dwave_networkx',
'dwave_networkx.algorithms',
'dwave_networkx.utils',
'dwave_networkx.drawing',
'dwave_networkx.generators']
install_requires = ['networkx>=2.0,<3.0',
'decorator>=4.1.0,<5.0.0',
'dimod>=0.6.8,<0.7.0']
setup(
name='dwave_networkx',
version=__version__,
author=__author__,
author_email=__authoremail__,
description=__description__,
long_description=open('README.rst').read(),
url='https://github.com/dwavesystems/dwave_networkx',
download_url='https://github.com/dwavesystems/dwave_networkx/archive/0.5.0.tar.gz',
packages=packages,
install_requires=install_requires
)