-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (37 loc) · 1.09 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
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
# vim:fenc=utf-8
#
# Copyright 2020 Char Aznable <[email protected]>
# Description: setup for GDBKokkos release and install
#
# Distributed under terms of the 3-clause BSD license.
import setuptools
setuptools.setup(
name="GDBKokkos",
python_requires=">=3.8.10",
version="0.2.1",
description="GDB python modules for debugging Kokkos",
long_description="see https://github.com/Char-Aznable/GDBKokkos",
long_description_content_type="text/markdown",
url="https://github.com/Char-Aznable/GDBKokkos.git",
author="Char Aznable",
author_email="[email protected]",
license="BSD 3-clause",
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
packages=["GDBKokkos"],
include_package_data=True,
install_requires=[
"numpy",
"scipy",
"pandas",
],
extras_require = {
"tests" : ["pytest", "pytest-cov", "codecov"]
},
data_files = [("", ["LICENSE"])]
)