-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
77 lines (66 loc) · 2.24 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
65
66
67
68
69
70
71
72
73
74
75
76
77
# Copyright 2020 Joseph T. Iosue
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""setup.py.
Set up details for ``pip install qubovert`` or ``pip install -e .`` if
installing by source.
"""
import setuptools
from setuptools.command.build_ext import build_ext
with open('README.rst') as f:
README = f.read()
with open("requirements.txt") as f:
REQUIREMENTS = [line.strip() for line in f if line.strip()]
# get __version__, __author__, etc.
with open("qubovert/_version.py") as f:
exec(f.read())
# create the extension for the C file in qubovert.sim.src
extensions = [
setuptools.Extension(
name='qubovert.sim._canneal',
sources=['./qubovert/sim/_canneal.c',
'./qubovert/sim/src/pcg_basic.c',
'./qubovert/sim/src/random.c',
'./qubovert/sim/src/anneal_quso.c',
'./qubovert/sim/src/anneal_puso.c'],
include_dirs=['./qubovert/sim/src/'],
language='c'
)
]
setuptools.setup(
name="qubovert",
version=__version__,
author=__author__,
author_email=__authoremail__,
description=__description__,
long_description=README,
long_description_content_type='text/x-rst',
url=__sourceurl__,
license=__license__,
packages=setuptools.find_packages(exclude=("tests", "docs")),
ext_modules=extensions,
test_suite="tests",
install_requires=REQUIREMENTS,
zip_safe=False,
cmdclass=dict(build_ext=build_ext),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
project_urls={
"Source": __sourceurl__,
"Docs": __docsurl__
}
)