Browse Source

Add dependencies to `setup.py`

master
Pete Shadbolt 7 years ago
parent
commit
83a6fd0ee8
2 changed files with 11 additions and 11 deletions
  1. +4
    -4
      requirements.txt
  2. +7
    -7
      setup.py

+ 4
- 4
requirements.txt View File

@@ -1,11 +1,11 @@
-e git+pete@rpi:gitpi/abp.git@68e7de7088ff268a21a7df05435120f328ad7eae#egg=abp-github/master
abp==0.2
argparse==1.2.1
backports.ssl-match-hostname==3.5.0.1
decorator==4.0.9
decorator==4.0.10
networkx==1.11
numpy==1.11.0
numpy==1.11.1
six==1.10.0
tqdm==4.7.0
tqdm==4.7.6
websocket-client==0.37.0
websocket-server==0.4
wsgiref==0.1.2

+ 7
- 7
setup.py View File

@@ -1,13 +1,13 @@
from setuptools import setup, find_packages

setup(
name = "chp",
version = "0.1",
name = "abp",
version = "0.2",
packages = find_packages(),
test_suite = 'tests',
author = "Scott Aaronson & Daniel Gottesman (Ported by Pete Shadbolt)",
description = "CNOT Hadamard Phase",
license = "Copyright Scott & others",
test_suite = "tests",
author = "Pete Shadbolt",
description = "Port of C++ due to Simon Anders and Hans J Briegel",
keywords = "quantum",
url = "http://www.scottaaronson.com/chp/"
setup_requires = ["numpy"],
install_requires = ["numpy", "networkx", "tqdm", "websocket-client", "websocket-server"],
)

Loading…
Cancel
Save