-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (17 loc) · 707 Bytes
/
Copy pathsetup.py
File metadata and controls
17 lines (17 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import find_packages, setup
setup(
name='QutiePy',
py_modules=['qutiepy'],
version='0.1.13',
long_description='A WIP package providing a simple OOP framework for simulating quantum computing operations in python, with an emphasis on accessability and simplicity.',
long_description_content_type="text/markdown",
description='A simple package for learning about and exploring quantum computing.',
author='T. E. L. Findlay',
author_email="snick10000@live.co.uk",
license='MIT',
classifiers= [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
]
)