-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 825 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 825 Bytes
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
32
from setuptools import setup
setup(
name='order',
version='0.0.1',
description='optimize tensor network contractions',
url='https://github.com/TensorCon/order',
author_email='aneksteind@gmail.com',
license='GPLv3',
packages=[
'opt/gencon'
],
install_requires=[
'networkx>=2.3',
'click==7.0',
'deap>=1.2.2',
'pytest==5.0.1',
'oct2py==4.0.6',
'numpy==1.17.0',
'matplotlib==2.2.2;implementation_name != "pypy"',
'scipy>=1.3.1;implementation_name != "pypy"'
],
python_requires='>=3.6.1',
entry_points = {
'console_scripts': [
'ratcon=opt.run:ratcon',
'netcon=opt.run:netcon',
'gencon=opt.run:gencon',
'test-gen=opt.run:generate_tests'
]
}
)