-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (28 loc) · 987 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
27
28
29
30
31
32
33
34
35
import setuptools
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license_text = f.read()
with open("requirements.txt") as f:
requirements = [line.strip() for line in f if line.strip()]
# read the __version__ variable from qubovert/_version.py
exec(open("qSonify/_version.py").read())
setuptools.setup(
name="qSonify",
version=__version__,
author="Joseph Iosue",
author_email="joe.iosue@yahoo.com",
description="A package for sonifying quantum algorithms",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/jiosue/qsonify",
license=license_text,
packages=setuptools.find_packages(exclude=("tests", "docs", "outputs")),
test_suite="tests",
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)