forked from libsemigroups/libsemigroups_cppyy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 646 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""
A minimal cppyy wrapper for the libsemigroups C++ library.
"""
from setuptools import find_packages, setup
setup(
name="libsemigroups_cppyy",
version="0.0.1",
description="A minimal cppyy wrapper for the libsemigroups C++ library",
url="http://github.com/libsemigroups/libsemigroups_cppyy",
author="James D. Mitchell, Nicolas Thiéry",
author_email="jdm3@st-andrews.ac.uk, Nicolas.Thiery@u-psud.fr",
license="GPL3",
install_requires=["cppyy", "networkx", "pkgconfig", "packaging"],
packages=find_packages(exclude=["tests"]),
tests_require=["tox"],
zip_safe=False,
include_package_data=True,
)