forked from tequilahub/tequila
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·55 lines (45 loc) · 1.65 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·55 lines (45 loc) · 1.65 KB
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
from setuptools import setup, find_packages
import os
import sys
# on Windows: remove jax and jaxlib from requirements.txt and add autgrad
def read_requirements(fname):
with open("requirements.txt") as file:
lines = file.readlines()
requirements = [line.strip() for line in lines]
return requirements
# get author and version information
VERSIONFILE = "src/tequila/version.py"
info = {"__version__": None, "__author__": None}
with open(VERSIONFILE, "r") as f:
for l in f.readlines():
tmp = l.split("=")
if tmp[0].strip().lower() in info:
info[tmp[0].strip().lower()] = tmp[1].strip().strip('"').strip("'")
for k, v in info.items():
if v is None:
raise Exception("could not find {} string in {}".format(k, VERSIONFILE))
extras_3_6 = ["dataclasses"]
extras_3_7 = []
additional = []
requirements = read_requirements("requirements.txt")
try:
with open("README.md", "r") as f:
long_description = f.read()
except Exception:
long_description = ""
setup(
name="tequila-basic",
version=info["__version__"],
author=info["__author__"],
url="https://github.com/tequilahub/tequila",
description="A High-Level Abstraction Framework for Quantum Algorithms",
author_email="jakob.kottmann@gmail.com",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=requirements + additional,
extras_require={':python_version < "3.7"': extras_3_6, ':python_version == "3.7"': extras_3_7},
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
package_data={"": [os.path.join("src")]},
)