-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (56 loc) · 1.99 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
"""A setuptools based setup module.
Run using:
$ python -m pip install <flags> .
Most used flags:
-e, --editable <path/url>
Install a project in editable mode (i.e. setuptools “develop mode”)
from a local project path or a VCS url.
-v, --verbose
Give more output.
"""
# pylint: disable=invalid-name
from pathlib import Path
from setuptools import setup, find_packages
here = Path(__file__).parent.absolute() # pylint: disable=no-member
# Get the long description from the README file
with open(here / "README.md", encoding="utf-8") as f:
long_description = f.read()
with open(here / "requirements.txt", encoding="utf-8") as f:
requirements = f.read().splitlines()
setup(
name="dasqa",
version="0.1",
description="MQT Designer for Alternative Superconducting Quantum Architectures",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cda-tum/mqt-dasqa",
author="Jagatheesan Kunasaikaran",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
],
keywords="quantum sdk hardware eda",
packages=find_packages(),
package_data={"dasqa": []},
python_requires=">=3.9",
install_requires=requirements,
entry_points={
"console_scripts": [
"dasqa=src.__main__:main",
],
},
project_urls={
"Bug Tracker": "https://github.com/cda-tum/issues",
"Documentation": "https://github.com/cda-tum/mqt-dasqa",
"Source Code": "https://github.com/cda-tum/mqt-dasqa",
},
)