This repository has been archived by the owner on Aug 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd22480
commit 065d1da
Showing
4 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include libsemigroups_cppyy/include/python_element.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,14 @@ | |
from setuptools import find_packages, setup | ||
|
||
setup(name='libsemigroups_cppyy', | ||
version='0.0.0', | ||
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='[email protected], [email protected]', | ||
license='GPL3', | ||
install_requires=['cppyy','networkx'], | ||
packages=find_packages(exclude=['tests']), | ||
tests_require=['nose'], | ||
zip_safe=False) | ||
tests_require=['tox'], | ||
zip_safe=False, | ||
include_package_data=True) |