Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
binary_c-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Izzard, Robert Dr (Maths & Physics)
binary_c-python
Commits
7ed811fb
Commit
7ed811fb
authored
4 years ago
by
David Hendriks
Browse files
Options
Downloads
Patches
Plain Diff
Updatig the files for packaging
parent
50250d93
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
MANIFEST.in
+2
-0
2 additions, 0 deletions
MANIFEST.in
Makefile
+4
-0
4 additions, 0 deletions
Makefile
setup.py
+37
-26
37 additions, 26 deletions
setup.py
with
43 additions
and
26 deletions
MANIFEST.in
+
2
−
0
View file @
7ed811fb
include Makefile
include src/*.c
include include/*.h
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Makefile
+
4
−
0
View file @
7ed811fb
...
...
@@ -23,6 +23,7 @@ CC := gcc
LD
:=
gcc
MAKE
:=
/usr/bin/make
MKDIR_P
:=
mkdir
-p
PWD
:=
pwd
# Libraries
LIBS
:=
-lbinary_c
$(
shell
$(
BINARY_C
)
/binary_c-config
--libs
)
...
...
@@ -41,6 +42,7 @@ OBJ_FLAGS := -c
# Shared lib files and flags
SO_NAME
:=
$(
TARGET_LIB_DIR
)
/libbinary_c_python_api.so
SO_FLAGS
:=
-shared
SO_NAME_EXTRA
:=
binarycpython/libbinary_c_python_api.so
all
:
create_directories create_objects create_library
...
...
@@ -57,7 +59,9 @@ create_objects_debug:
$(
CC
)
-DBINARY_C
=
$(
BINARY_C
)
-DBINARY_C_PYTHON_DEBUG
$(
CFLAGS
)
$(
INCDIRS
)
$(
C_SRC
)
-o
$(
OBJECTS
)
$(
OBJ_FLAGS
)
$(
LIBS
)
create_library
:
@
echo
$(
PWD
)
$(
CC
)
-DBINARY_C
=
$(
BINARY_C
)
$(
SO_FLAGS
)
-o
$(
SO_NAME
)
$(
OBJECTS
)
$(
CC
)
-DBINARY_C
=
$(
BINARY_C
)
$(
SO_FLAGS
)
-o
$(
SO_NAME_EXTRA
)
$(
OBJECTS
)
create_library_debug
:
$(
CC
)
-DBINARY_C
=
$(
BINARY_C
)
-DBINARY_C_PYTHON_DEBUG
$(
SO_FLAGS
)
-o
$(
SO_NAME
)
$(
OBJECTS
)
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
37
−
26
View file @
7ed811fb
...
...
@@ -11,15 +11,21 @@ import setuptools
from
distutils.core
import
setup
,
Extension
import
distutils.command.build
# TODO: replace the tasks that call binary_c-config with a single function that handles the return status a bit better.
# TODO: replace the tasks that call binary_c-config with a single function that handles the return status a bit better.
# Functions
def
readme
():
"""
Opens readme file and returns content
"""
with
open
(
"
README
.md
"
)
as
file
:
with
open
(
"
README
"
)
as
file
:
return
file
.
read
()
# def readme_rst():
# """Opens readme file and returns contents converted to rst"""
# with open("README.md") as file:
# return md_to_rst.convertMarkdownToRst(file.read())
def
license
():
"""
Opens license file and returns the content
"""
with
open
(
"
LICENSE.md
"
)
as
file
:
...
...
@@ -37,6 +43,7 @@ def check_version(installed_binary_c_version, required_binary_c_versions):
)
assert
installed_binary_c_version
in
required_binary_c_versions
,
message
def
execute_make
():
"""
Function to execute the makefile.
...
...
@@ -48,12 +55,12 @@ def execute_make():
make_command
=
[
"
make
"
]
p
=
subprocess
.
run
(
make_command
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
stdout
=
p
.
stdout
# stdout = normal output
stderr
=
p
.
stderr
# stderr = error output
stdout
=
p
.
stdout
# stdout = normal output
stderr
=
p
.
stderr
# stderr = error output
if
p
.
returncode
!=
0
:
print
(
"
Something went wrong when executing the makefile:
"
)
print
(
stderr
.
decode
(
'
utf-8
'
))
print
(
stderr
.
decode
(
"
utf-8
"
))
print
(
"
Aborting
"
)
sys
.
exit
(
-
1
)
...
...
@@ -62,7 +69,6 @@ def execute_make():
print
(
"
Successfully built the libbinary_c_api.so
"
)
###
REQUIRED_BINARY_C_VERSIONS
=
[
"
2.1.7
"
]
...
...
@@ -160,12 +166,14 @@ INCLUDE_DIRS = (
else
[]
)
LIBRARIES
=
[
"
binary_c
"
]
+
BINARY_C_LIBS
+
[
"
binary_c_python_api
"
]
# LIBRARIES = ["binary_c"] + BINARY_C_LIBS + ["binary_c_python_api"]
LIBRARIES
=
[
"
binary_c
"
]
+
BINARY_C_LIBS
LIBRARY_DIRS
=
[
os
.
path
.
join
(
BINARY_C_DIR
,
"
src
"
),
"
./
"
,
os
.
path
.
join
(
CWD
,
"
lib/
"
),
os
.
path
.
join
(
CWD
,
"
binarycpython/
"
),
]
+
BINARY_C_LIBDIRS
RUNTIME_LIBRARY_DIRS
=
[
...
...
@@ -181,7 +189,7 @@ LIBRARIES = list(dict.fromkeys(LIBRARIES))
LIBRARY_DIRS
=
list
(
dict
.
fromkeys
(
LIBRARY_DIRS
))
RUNTIME_LIBRARY_DIRS
=
list
(
dict
.
fromkeys
(
RUNTIME_LIBRARY_DIRS
))
#
#
# print('\n')
# print("BINARY_C_CONFIG: ", str(BINARY_C_CONFIG) + "\n")
# print("incdirs: ", str(INCLUDE_DIRS) + "\n")
...
...
@@ -219,44 +227,49 @@ BINARY_C_PYTHON_API_MODULE = Extension(
# Override build command
class
CustomBuildCommand
(
distutils
.
command
.
build
.
build
):
def
run
(
self
):
execute_make
()
#
execute_make()
# Run the original build command
# print(super().run())
distutils
.
command
.
build
.
build
.
run
(
self
)
setup
(
name
=
"
binarycpython
"
,
version
=
"
0.2
"
,
version
=
"
0.2
.1
"
,
description
=
"""
This is a python API for binary_c (versions {}) by David Hendriks, Rob Izzard and collaborators.
Based on the initial set up by Jeff andrews.
It is tested and designed to work for versions {}, we can
'
t guarantee proper functioning for other versions
If you want to use a different version of binary_c, download and install a different version of this package
"""
.
format
(
str
(
REQUIRED_BINARY_C_VERSIONS
),
str
(
REQUIRED_BINARY_C_VERSIONS
)
This is a python API for binary_c (versions {}) by David Hendriks, Rob Izzard and collaborators.
Based on the initial set up by Jeff andrews.
It is tested and designed to work for versions {}, we can
'
t guarantee proper functioning for other versions
If you want to use a different version of binary_c, download and install a different version of this package
"""
.
format
(
"
,
"
.
join
(
str
(
REQUIRED_BINARY_C_VERSIONS
)),
"
,
"
.
join
(
str
(
REQUIRED_BINARY_C_VERSIONS
)),
),
author
=
"
David Hendriks
"
,
author_email
=
"
davidhendriks93@gmail.com
"
,
long_description
_content_type
=
'
text/markdown
'
,
long_description
=
readme
()
,
#
long_description
=readme()
,
long_description
=
"
hello
"
,
url
=
"
https://gitlab.eps.surrey.ac.uk/ri0005/binary_c-python
"
,
license
=
"
gpl
"
,
keywords
=
[
'
binary_c
'
,
'
astrophysics
'
,
'
stellar evolution
'
,
'
population synthesis
'
],
# Keywords that define your package best
keywords
=
[
"
binary_c
"
,
"
astrophysics
"
,
"
stellar evolution
"
,
"
population synthesis
"
,
],
# Keywords that define your package best
packages
=
[
"
binarycpython
"
,
"
binarycpython.utils
"
,
"
binarycpython.core
"
,
"
binarycpython.tests
"
,
"
binarycpython.tests.c
ore
"
,
"
binarycpython.tests.c
_bindings
"
,
],
install_requires
=
[
"
numpy
"
,
"
pytest
"
,
"
h5py
"
],
include_package_data
=
True
,
ext_modules
=
[
BINARY_C_PYTHON_API_MODULE
],
# binary_c must be loaded
classifiers
=
[
"
Development Status :: 3 - Alpha
"
,
"
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
"
,
...
...
@@ -269,7 +282,5 @@ setup(
"
Topic :: Scientific/Engineering :: Physics
"
,
"
Topic :: Software Development :: Libraries :: Python Modules
"
,
],
cmdclass
=
{
'
build
'
:
CustomBuildCommand
},
cmdclass
=
{
"
build
"
:
CustomBuildCommand
},
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment