-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
13 lines (13 loc) · 810 Bytes
/
setup.py
File metadata and controls
13 lines (13 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
from distutils.core import setup
setup(
name = 'qcircuit', # How you named your package folder
packages = ['qcircuit'], # Chose the same as "name"
version = '1.0.1', # Start with a small number and increase it with every change you make
license='Apache', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description = 'Quantum Circuit Simulator', # Give a short description about your library
author = 'Olga Okrut', # Type in your name
author_email = 'vokrut42sv@gmail.com', # Type in your E-Mail
url = 'https://github.com/olgOk/QCircuit', # Provide either the link to your github or to your website
python_requires = ('>=3.6.0'),
download_url = "https://github.com/olgOk/QCircuit/archive/1.0.1.tar.gz"
)